Skip to content

Commit

Permalink
Correct comments in gc.c
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Jun 16, 2017
1 parent aa8121c commit 497a0a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,10 +579,10 @@ mark_context(mrb_state *mrb, struct mrb_context *c)
int i;
mrb_callinfo *ci;

/* mark stack */
/* mark VM stack */
mark_context_stack(mrb, c);

/* mark VM stack */
/* mark call stack */
if (c->cibase) {
for (ci = c->cibase; ci <= c->ci; ci++) {
mrb_gc_mark(mrb, (struct RBasic*)ci->env);
Expand Down

0 comments on commit 497a0a7

Please sign in to comment.