From d0c038da07ee85c70cf891d803824fd7fd1832ff Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 20 Feb 2013 11:08:21 -0300 Subject: typo in comment --- lmem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lmem.h') diff --git a/lmem.h b/lmem.h index 0eba1518..6e44151e 100644 --- a/lmem.h +++ b/lmem.h @@ -1,5 +1,5 @@ /* -** $Id: lmem.h,v 1.38 2011/12/02 13:26:54 roberto Exp $ +** $Id: lmem.h,v 1.39 2012/11/14 17:21:34 roberto Exp roberto $ ** Interface to Memory Manager ** See Copyright Notice in lua.h */ @@ -18,7 +18,7 @@ ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is ** always constant. ** The macro is somewhat complex to avoid warnings: -** +1 avoids warnings of "comparsion has constant result"; +** +1 avoids warnings of "comparison has constant result"; ** cast to 'void' avoids warnings of "value unused". */ #define luaM_reallocv(L,b,on,n,e) \ -- cgit v1.2.3-55-g6feb