summaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-05-05 15:49:56 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-05-05 15:49:56 -0300
commit237f755dca9a4fd105ec0c1b0b402c7923daceba (patch)
treee25eff3c37c30e7d544e740058e80db71360830a /ldo.c
parent7444b5a1d5f66e8af031b575ec1c264e6937980d (diff)
downloadlua-237f755dca9a4fd105ec0c1b0b402c7923daceba.tar.gz
lua-237f755dca9a4fd105ec0c1b0b402c7923daceba.tar.bz2
lua-237f755dca9a4fd105ec0c1b0b402c7923daceba.zip
typos in comments
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 73d65371..aec4eed1 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.85 2010/04/18 12:41:35 roberto Exp roberto $ 2** $Id: ldo.c,v 2.86 2010/04/18 13:22:48 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -476,7 +476,7 @@ static int recover (lua_State *L, int status) {
476/* 476/*
477** signal an error in the call to 'resume', not in the execution of the 477** signal an error in the call to 'resume', not in the execution of the
478** coroutine itself. (Such errors should not be handled by any coroutine 478** coroutine itself. (Such errors should not be handled by any coroutine
479** error hanlder and should not kill the coroutine.) 479** error handler and should not kill the coroutine.)
480*/ 480*/
481static void resume_error (lua_State *L, const char *msg, StkId firstArg) { 481static void resume_error (lua_State *L, const char *msg, StkId firstArg) {
482 L->top = firstArg; /* remove args from the stack */ 482 L->top = firstArg; /* remove args from the stack */