Skip to content

Commit df5d3fe

Browse files
committed
fixup! WIP Better Ractor::IsolationError exception message
1 parent 620e412 commit df5d3fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ractor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ obj_traverse_i(VALUE obj, struct obj_traverse_data *data)
13121312
for (int i = 0; i < RARRAY_LENINT(obj); i++) {
13131313
VALUE e = rb_ary_entry(obj, i);
13141314
if (obj_traverse_i(e, data)) {
1315-
if (data->chain) rb_ary_push(data->chain, rb_ary_new_from_args(2, rb_id2sym(rb_intern("array_index")), INT2FIX(i)));
1315+
if (data->chain) rb_ary_push(data->chain, rb_ary_new_from_args(2, rb_id2sym(rb_intern("array_at")), INT2FIX(i)));
13161316
return 1;
13171317
}
13181318
}

0 commit comments

Comments
 (0)