diff options
author | Lua Team <team@lua.org> | 2014-10-23 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2014-10-23 12:00:00 +0000 |
commit | 92fdb95364ed274752b8634c8ba3dca1f1dc5fb3 (patch) | |
tree | d1747f7ed2d0ed06b83ee3073fe4256aefd4a928 /src/lcorolib.c | |
parent | d7648e85b78d53a2248de909868192598ad0eb69 (diff) | |
download | lua-github-5.3.0-beta.tar.gz |
Lua 5.3.0-beta5.3.0-beta
Diffstat (limited to 'src/lcorolib.c')
-rw-r--r-- | src/lcorolib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lcorolib.c b/src/lcorolib.c index fae85b95..cb6cfe5a 100644 --- a/src/lcorolib.c +++ b/src/lcorolib.c @@ -1,5 +1,5 @@ /* -** $Id: lcorolib.c,v 1.6 2014/05/08 13:52:20 roberto Exp $ +** $Id: lcorolib.c,v 1.7 2014/09/01 18:00:04 roberto Exp $ ** Coroutine Library ** See Copyright Notice in lua.h */ @@ -19,7 +19,7 @@ static lua_State *getco (lua_State *L) { lua_State *co = lua_tothread(L, 1); - luaL_argcheck(L, co, 1, "coroutine expected"); + luaL_argcheck(L, co, 1, "thread expected"); return co; } |