From a71c5f6f531a2503ff80e579e6c3bb95968645ba Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Jun 2010 11:11:17 -0300 Subject: typo in comments --- lfunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lfunc.c') diff --git a/lfunc.c b/lfunc.c index 67244672..6e809ca0 100644 --- a/lfunc.c +++ b/lfunc.c @@ -1,5 +1,5 @@ /* -** $Id: lfunc.c,v 2.25 2010/06/04 13:25:10 roberto Exp roberto $ +** $Id: lfunc.c,v 2.26 2010/06/10 21:27:09 roberto Exp roberto $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -57,7 +57,7 @@ UpVal *luaF_findupval (lua_State *L, StkId level) { lua_assert(p->v != &p->u.value); if (p->v == level) { /* found a corresponding upvalue? */ if (isdead(g, o)) /* is it dead? */ - changewhite(o); /* ressurrect it */ + changewhite(o); /* resurrect it */ return p; } resetoldbit(o); /* may create a newer upval after this one */ -- cgit v1.2.3-55-g6feb