From c9ce754e38712afc1de6325cfa1291324dbdda61 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 2 May 2011 14:33:01 -0300 Subject: comment --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 4fbd4ded..e8789a55 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.53 2010/11/11 15:38:43 roberto Exp roberto $ +** $Id: ltable.c,v 2.54 2011/04/05 18:32:28 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -336,7 +336,7 @@ void luaH_resizearray (lua_State *L, Table *t, int nasize) { static void rehash (lua_State *L, Table *t, const TValue *ek) { int nasize, na; - int nums[MAXBITS+1]; /* nums[i] = number of keys between 2^(i-1) and 2^i */ + int nums[MAXBITS+1]; /* nums[i] = number of keys with 2^(i-1) < k <= 2^i */ int i; int totaluse; for (i=0; i<=MAXBITS; i++) nums[i] = 0; /* reset counts */ -- cgit v1.2.3-55-g6feb