summaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-30 16:48:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-30 16:48:08 -0300
commitb9dcf9974d4dbff3ca28ff618259e277cb0090ea (patch)
tree66b903add6a56545bb50fda02d33baab24ba44d5 /lapi.c
parenta77d263e86feea55529800028f960d7124c1385f (diff)
downloadlua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.tar.gz
lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.tar.bz2
lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.zip
detail (typos in comments)
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lapi.c b/lapi.c
index 214ac283..ec239962 100644
--- a/lapi.c
+++ b/lapi.c
@@ -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*/
188static void reverse (lua_State *L, StkId from, StkId to) { 188static void reverse (lua_State *L, StkId from, StkId to) {
189 for (; from < to; from++, to--) { 189 for (; from < to; from++, to--) {