summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-06 02:49:37 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-06 02:49:37 +0000
commitf27162a9621a6f5ebb0e38a1cd5365a1d434353f (patch)
treeb3222eee0e796bf62e24b2041959d37cba43817a
parent8b3490d0e53b00538dac4eba5d0c7feddc3a2dc5 (diff)
downloadruby-f27162a9621a6f5ebb0e38a1cd5365a1d434353f.tar.gz
ruby-f27162a9621a6f5ebb0e38a1cd5365a1d434353f.tar.xz
ruby-f27162a9621a6f5ebb0e38a1cd5365a1d434353f.zip
* gc.c (gc_sweep): typo fix.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9902 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index b017b013d..a3afd2959 100644
--- a/gc.c
+++ b/gc.c
@@ -1074,7 +1074,7 @@ gc_sweep(void)
}
else if (RBASIC(p)->flags == FL_MARK) {
/* objects to be finalized */
- /* do notning remain marked */
+ /* do nothing remain marked */
}
else {
RBASIC(p)->flags &= ~FL_MARK;