Skip to content

Commit 8b3a55e

Browse files
committed
remove the "{{{" and "}}}" in comment
1 parent 26442bf commit 8b3a55e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chapters/015-ngx_lua_log.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ngx_http_lua_inject_log_api(lua_State *L)
4949
static void
5050
ngx_http_lua_inject_log_consts(lua_State *L)
5151
{
52-
/* {{{ nginx log level constants */
52+
/* nginx log level constants */
5353
lua_pushinteger(L, NGX_LOG_STDERR);
5454
lua_setfield(L, -2, "STDERR");
5555
@@ -76,7 +76,6 @@ ngx_http_lua_inject_log_consts(lua_State *L)
7676
7777
lua_pushinteger(L, NGX_LOG_DEBUG);
7878
lua_setfield(L, -2, "DEBUG");
79-
/* }}} */
8079
}
8180
```
8281

0 commit comments

Comments
 (0)