aboutsummaryrefslogtreecommitdiff
path: root/lgc.h
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.h
parentd9ea6eca7cd86758b9ff994b9e2eb1fa625155c9 (diff)
downloadlua-a71c5f6f531a2503ff80e579e6c3bb95968645ba.tar.gz
lua-a71c5f6f531a2503ff80e579e6c3bb95968645ba.tar.bz2
lua-a71c5f6f531a2503ff80e579e6c3bb95968645ba.zip
typo in comments
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.h b/lgc.h
index 191adfeb..c7cfdf7c 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.42 2010/06/04 13:25:10 roberto Exp roberto $ 2** $Id: lgc.h,v 2.43 2010/06/07 16:55:34 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*/
@@ -44,7 +44,7 @@
44/* 44/*
45** macro to tell when main invariant (white objects cannot point to black 45** macro to tell when main invariant (white objects cannot point to black
46** ones) must be kept. During a non-generational collection, the sweep 46** ones) must be kept. During a non-generational collection, the sweep
47** phase may brak the invariant, as objects turned white may point to 47** phase may break the invariant, as objects turned white may point to
48** still-black objects. The invariant is restored when sweep ends and 48** still-black objects. The invariant is restored when sweep ends and
49** all objects are white again. During a generational collection, the 49** all objects are white again. During a generational collection, the
50** invariant must be kept all times. 50** invariant must be kept all times.