diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-30 16:48:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-30 16:48:08 -0300 |
commit | b9dcf9974d4dbff3ca28ff618259e277cb0090ea (patch) | |
tree | 66b903add6a56545bb50fda02d33baab24ba44d5 /lapi.c | |
parent | a77d263e86feea55529800028f960d7124c1385f (diff) | |
download | lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.tar.gz lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.tar.bz2 lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.zip |
detail (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.221 2014/06/26 17:25:11 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 2.222 2014/06/26 18:28:24 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 | */ |
@@ -183,7 +183,7 @@ LUA_API void lua_settop (lua_State *L, int idx) { | |||
183 | 183 | ||
184 | /* | 184 | /* |
185 | ** Reverse the stack segment from 'from' to 'to' | 185 | ** Reverse the stack segment from 'from' to 'to' |
186 | ** (auxiliar to 'lua_rotate') | 186 | ** (auxiliary to 'lua_rotate') |
187 | */ | 187 | */ |
188 | static void reverse (lua_State *L, StkId from, StkId to) { | 188 | static void reverse (lua_State *L, StkId from, StkId to) { |
189 | for (; from < to; from++, to--) { | 189 | for (; from < to; from++, to--) { |