summaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-30 11:11:17 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-30 11:11:17 -0300
commita71c5f6f531a2503ff80e579e6c3bb95968645ba (patch)
tree96474e5949ce17418b12751dc83af5b260b7cbbe /lgc.c
parentd9ea6eca7cd86758b9ff994b9e2eb1fa625155c9 (diff)
downloadlua-a71c5f6f531a2503ff80e579e6c3bb95968645ba.tar.gz
lua-a71c5f6f531a2503ff80e579e6c3bb95968645ba.tar.bz2
lua-a71c5f6f531a2503ff80e579e6c3bb95968645ba.zip
typo in comments
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 531094f0..930542e1 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 2.99 2010/06/07 16:55:34 roberto Exp roberto $ 2** $Id: lgc.c,v 2.100 2010/06/25 12:18:10 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -27,7 +27,7 @@
27/* how much to allocate before next GC step */ 27/* how much to allocate before next GC step */
28#define GCSTEPSIZE 1024 28#define GCSTEPSIZE 1024
29 29
30/* maximum numer of elements to sweep in each single step */ 30/* maximum number of elements to sweep in each single step */
31#define GCSWEEPMAX 40 31#define GCSWEEPMAX 40
32 32
33/* cost of sweeping one element */ 33/* cost of sweeping one element */