summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-08-08 12:11:03 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-08-08 12:11:03 +0900
commitb609054f75158813c7556ec4477012aee9c30b89 (patch)
tree4e2deb9068fba57de7b7d2ab4e4480eb122b4b83
parent918d4dc85cc4ad58b9e52cd705231fe50960286e (diff)
parent33ace171c4e0627c37c5d8a5da5d00b3591ac866 (diff)
downloadmruby-b609054f75158813c7556ec4477012aee9c30b89.tar.gz
mruby-b609054f75158813c7556ec4477012aee9c30b89.zip
Merge pull request #2516 from suzukaze/fix-typo-gc
Fix typo in gc.c
-rw-r--r--src/gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc.c b/src/gc.c
index 9c80d852a..253128a44 100644
--- a/src/gc.c
+++ b/src/gc.c
@@ -986,7 +986,7 @@ clear_all_old(mrb_state *mrb)
incremental_gc_until(mrb, GC_STATE_ROOT);
mrb->is_generational_gc_mode = origin_mode;
- /* The gray objects has already been painted as white */
+ /* The gray objects have already been painted as white */
mrb->atomic_gray_list = mrb->gray_list = NULL;
}