summaryrefslogtreecommitdiff
path: root/gc.c
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
commit3007dab16f87779b6f0fc2be4da455afae69a682 (patch)
treeb3222eee0e796bf62e24b2041959d37cba43817a /gc.c
parent9f69352c97d25faa48023653ab9aac303751bbb3 (diff)
* gc.c (gc_sweep): typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9902 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index b017b013db..a3afd29590 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;