spelling: resurrect

This commit is contained in:
Josh Soref 2021-11-04 00:35:32 -04:00
parent e3f15d976e
commit 1bf80d91ab
2 changed files with 2 additions and 2 deletions

View file

@ -76,7 +76,7 @@ UpVal* luaF_findupval(lua_State* L, StkId level)
if (p->v == level)
{ /* found a corresponding upvalue? */
if (isdead(g, obj2gco(p))) /* is it dead? */
changewhite(obj2gco(p)); /* ressurect it */
changewhite(obj2gco(p)); /* resurrect it */
return p;
}
pp = &p->next;

View file

@ -277,7 +277,7 @@ do
assert(getmetatable(o) == tt)
-- create new objects during GC
local a = 'xuxu'..(10+3)..'joao', {}
___Glob = o -- ressurect object!
___Glob = o -- resurrect object!
newproxy(o) -- creates a new one with same metatable
print(">>> closing state " .. "<<<\n")
end