1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* array.c: Revert r50763. because "reentered" is not typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-06-04 04:49:26 +00:00
parent d348051773
commit 5015e057fb
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Jun 4 12:47:54 SGT 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* array.c: Revert r50763. because "reentered" is not typo.
Thu Jun 4 11:12:29 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* ext/win32ole/win32ole.c: fix a typo. Patch by @davydovanton

View file

@ -2382,7 +2382,7 @@ static VALUE
sort_reentered(VALUE ary)
{
if (RBASIC(ary)->klass) {
rb_raise(rb_eRuntimeError, "sort re-entered");
rb_raise(rb_eRuntimeError, "sort reentered");
}
return Qnil;
}