diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-03-05 11:13:55 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-03-05 11:13:55 -0300 |
commit | 8c429311a38f0ca6f06c6df460f76414d4f4dfbe (patch) | |
tree | 5ba9a3db66b93e737d5f4caaf1fa0454e1ee00cf /ldo.c | |
parent | 66b7b075a65670e8a730c9373d28f971aceb8930 (diff) | |
download | lua-8c429311a38f0ca6f06c6df460f76414d4f4dfbe.tar.gz lua-8c429311a38f0ca6f06c6df460f76414d4f4dfbe.tar.bz2 lua-8c429311a38f0ca6f06c6df460f76414d4f4dfbe.zip |
typo in comment
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 2.196 2018/02/17 19:29:29 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 2.197 2018/02/26 14:16:05 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -264,7 +264,7 @@ void luaD_inctop (lua_State *L) { | |||
264 | 264 | ||
265 | /* | 265 | /* |
266 | ** Call a hook for the given event. Make sure there is a hook to be | 266 | ** Call a hook for the given event. Make sure there is a hook to be |
267 | ** called. (Both 'L->hook' and 'L->hookmask', which triggers this | 267 | ** called. (Both 'L->hook' and 'L->hookmask', which trigger this |
268 | ** function, can be changed asynchronously by signals.) | 268 | ** function, can be changed asynchronously by signals.) |
269 | */ | 269 | */ |
270 | void luaD_hook (lua_State *L, int event, int line, | 270 | void luaD_hook (lua_State *L, int event, int line, |