From 3c4d970a7b0adf9ef1cb7e6ec81dc9d9e99bfcbf Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 26 Nov 2009 09:39:20 -0200 Subject: comment typos --- lfunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lfunc.c') diff --git a/lfunc.c b/lfunc.c index bca286ad..fdcf0b78 100644 --- a/lfunc.c +++ b/lfunc.c @@ -1,5 +1,5 @@ /* -** $Id: lfunc.c,v 2.15 2009/09/28 16:32:50 roberto Exp roberto $ +** $Id: lfunc.c,v 2.16 2009/09/30 15:38:37 roberto Exp roberto $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -60,7 +60,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, obj2gco(p))) /* is it dead? */ - changewhite(obj2gco(p)); /* ressurect it */ + changewhite(obj2gco(p)); /* ressurrect it */ return p; } pp = &p->next; -- cgit v1.2.3-55-g6feb