mirror of
https://github.com/lua/lua
synced 2026-09-27 00:28:25 +03:00
detail (typos in comments)
This commit is contained in:
parent
a77d263e86
commit
b9dcf9974d
9 changed files with 28 additions and 28 deletions
4
lapi.c
4
lapi.c
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
** $Id: lapi.c,v 2.221 2014/06/26 17:25:11 roberto Exp roberto $
|
||||
** $Id: lapi.c,v 2.222 2014/06/26 18:28:24 roberto Exp roberto $
|
||||
** Lua API
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
|
@ -183,7 +183,7 @@ LUA_API void lua_settop (lua_State *L, int idx) {
|
|||
|
||||
/*
|
||||
** Reverse the stack segment from 'from' to 'to'
|
||||
** (auxiliar to 'lua_rotate')
|
||||
** (auxiliary to 'lua_rotate')
|
||||
*/
|
||||
static void reverse (lua_State *L, StkId from, StkId to) {
|
||||
for (; from < to; from++, to--) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue