diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-03-16 18:10:18 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-03-16 18:10:18 -0300 |
commit | 75250a237cb620ef44b344c07398b8a27bdcddc2 (patch) | |
tree | 45ef545008a6a6a9bd0fcc1eb1f732194d7b0315 /lapi.c | |
parent | 437a49be5eb312b97645a3c342ab90746c2674c4 (diff) | |
download | lua-75250a237cb620ef44b344c07398b8a27bdcddc2.tar.gz lua-75250a237cb620ef44b344c07398b8a27bdcddc2.tar.bz2 lua-75250a237cb620ef44b344c07398b8a27bdcddc2.zip |
typos in comments
Diffstat (limited to 'lapi.c')
-rw-r--r-- | lapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.c,v 2.169 2012/12/05 19:09:23 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 2.170 2012/12/05 19:49:55 roberto Exp roberto $ |
3 | ** Lua API | 3 | ** Lua API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -1106,7 +1106,7 @@ LUA_API int lua_error (lua_State *L) { | |||
1106 | lua_lock(L); | 1106 | lua_lock(L); |
1107 | api_checknelems(L, 1); | 1107 | api_checknelems(L, 1); |
1108 | luaG_errormsg(L); | 1108 | luaG_errormsg(L); |
1109 | /* code unreacheable; will unlock when control actually leaves the kernel */ | 1109 | /* code unreachable; will unlock when control actually leaves the kernel */ |
1110 | return 0; /* to avoid warnings */ | 1110 | return 0; /* to avoid warnings */ |
1111 | } | 1111 | } |
1112 | 1112 | ||