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
commita24d4016ac62851a5eb9b0268a909e8b24cb5381 (patch)
treebd8866254ae155a002d4eb24cc75ab7c4549458f /gc.c
parent0060c21f83857743c82fd0612612a57641d28fb1 (diff)
* gc.c (gc_sweep): typo fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@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 65c858b3e4..bbbb7a4f6e 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;