diff options
author | Lua Team <team@lua.org> | 2013-03-21 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2013-03-21 12:00:00 +0000 |
commit | dc27609467d2699ac9252e89d632432ac5f798f2 (patch) | |
tree | b934d79a77a76df417078dc6ac162bb0012708bb /src/lapi.c | |
parent | a101faf3e9db5b8b47cb0bcfb973b13d46ca304a (diff) | |
download | lua-github-5.2.2-rc4.tar.gz |
Diffstat (limited to 'src/lapi.c')
-rw-r--r-- | src/lapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.170 2012/12/05 19:49:55 roberto Exp $ +** $Id: lapi.c,v 2.171 2013/03/16 21:10:18 roberto Exp $ ** Lua API ** See Copyright Notice in lua.h */ @@ -1106,7 +1106,7 @@ LUA_API int lua_error (lua_State *L) { lua_lock(L); api_checknelems(L, 1); luaG_errormsg(L); - /* code unreacheable; will unlock when control actually leaves the kernel */ + /* code unreachable; will unlock when control actually leaves the kernel */ return 0; /* to avoid warnings */ } |