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
commit0af338d4322d9686687a4f5bfc16f88ff900bc42 (patch)
treebd8866254ae155a002d4eb24cc75ab7c4549458f
parent6d926bbbec16620ed85aa862e28a73ee87f185b2 (diff)
downloadruby-0af338d4322d9686687a4f5bfc16f88ff900bc42.tar.gz
ruby-0af338d4322d9686687a4f5bfc16f88ff900bc42.tar.xz
ruby-0af338d4322d9686687a4f5bfc16f88ff900bc42.zip
* gc.c (gc_sweep): typo fix.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@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 65c858b3e..bbbb7a4f6 100644
--- a/gc.c
+++ b/gc.c
@@ -1087,7 +1087,7 @@ gc_sweep()
}
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;