зеркало из https://github.com/github/ruby.git
* enumerator.c (next_i): typo fixed (reached at end -> reached an
end). pointed out by James Edward Gray II at LoneStar RubyConf. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
84255e0485
Коммит
c9775b0382
|
@ -1,3 +1,8 @@
|
|||
Fri Aug 28 07:25:25 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* enumerator.c (next_i): typo fixed (reached at end -> reached an
|
||||
end). pointed out by James Edward Gray II at LoneStar RubyConf.
|
||||
|
||||
Thu Aug 27 18:31:07 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* vm_method.c (rb_remove_method_id): exported.
|
||||
|
|
|
@ -581,7 +581,7 @@ next_i(VALUE curr, VALUE obj)
|
|||
VALUE result;
|
||||
|
||||
result = rb_block_call(obj, id_each, 0, 0, next_ii, obj);
|
||||
e->stop_exc = rb_exc_new2(rb_eStopIteration, "iteration reached at end");
|
||||
e->stop_exc = rb_exc_new2(rb_eStopIteration, "iteration reached an end");
|
||||
rb_ivar_set(e->stop_exc, rb_intern("result"), result);
|
||||
return rb_fiber_yield(1, &nil);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче