1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2000-10-31 08:37:47 +00:00
parent 5f4d324d3b
commit c90b1ecaf8
9 changed files with 224 additions and 101 deletions

View file

@ -1586,7 +1586,7 @@ rb_ary_flatten_bang(ary)
}
id = rb_obj_id(ary2);
if (rb_ary_includes(flattening, id)) {
rb_raise(rb_eArgError, "tryed to flatten recursive array");
rb_raise(rb_eArgError, "tried to flatten recursive array");
}
rb_ary_push(flattening, id);
}