aboutsummaryrefslogtreecommitdiff
path: root/ldo.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 /ldo.c
parenta77d263e86feea55529800028f960d7124c1385f (diff)
downloadlua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.tar.gz
lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.tar.bz2
lua-b9dcf9974d4dbff3ca28ff618259e277cb0090ea.zip
detail (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 d23ba47d..4d859048 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 2.122 2014/06/12 19:07:30 roberto Exp roberto $ 2** $Id: ldo.c,v 2.123 2014/06/19 18:27:20 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*/
@@ -516,7 +516,7 @@ static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) {
516/* 516/*
517** Do the work for 'lua_resume' in protected mode. Most of the work 517** Do the work for 'lua_resume' in protected mode. Most of the work
518** depends on the status of the coroutine: initial state, suspended 518** depends on the status of the coroutine: initial state, suspended
519** inside a hook, or regulary suspended (optionally with a continuation 519** inside a hook, or regularly suspended (optionally with a continuation
520** function), plus erroneous cases: non-suspended coroutine or dead 520** function), plus erroneous cases: non-suspended coroutine or dead
521** coroutine. 521** coroutine.
522*/ 522*/