diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-03-16 18:10:18 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-03-16 18:10:18 -0300 |
commit | 75250a237cb620ef44b344c07398b8a27bdcddc2 (patch) | |
tree | 45ef545008a6a6a9bd0fcc1eb1f732194d7b0315 /lgc.c | |
parent | 437a49be5eb312b97645a3c342ab90746c2674c4 (diff) | |
download | lua-75250a237cb620ef44b344c07398b8a27bdcddc2.tar.gz lua-75250a237cb620ef44b344c07398b8a27bdcddc2.tar.bz2 lua-75250a237cb620ef44b344c07398b8a27bdcddc2.zip |
typos in comments
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 2.138 2012/10/19 19:00:33 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 2.139 2013/03/15 18:33:36 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 | */ |
@@ -924,7 +924,7 @@ static void setpause (global_State *g, l_mem estimate) { | |||
924 | ** object inside the list (instead of to the header), so that the real | 924 | ** object inside the list (instead of to the header), so that the real |
925 | ** sweep do not need to skip objects created between "now" and the start | 925 | ** sweep do not need to skip objects created between "now" and the start |
926 | ** of the real sweep. | 926 | ** of the real sweep. |
927 | ** Returns how many objects it sweeped. | 927 | ** Returns how many objects it swept. |
928 | */ | 928 | */ |
929 | static int entersweep (lua_State *L) { | 929 | static int entersweep (lua_State *L) { |
930 | global_State *g = G(L); | 930 | global_State *g = G(L); |