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

* cont.c: small RDoc fix mentioned from <radek.bulat at gmail.com>

in [ruby-core:20921].

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-12-28 22:16:19 +00:00
parent 813d983154
commit 1487d9743b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Dec 29 07:15:16 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* cont.c: small RDoc fix mentioned from <radek.bulat at gmail.com>
in [ruby-core:20921].
Mon Dec 29 03:43:25 2008 Koichi Sasada <ko1@atdot.net>
* ruby.c (process_options): set th->base_block only while

2
cont.c
View file

@ -611,7 +611,7 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval)
*
* The <code>Fiber#resume</code> method accepts an arbitary number of
* parameters, if it is the first call to <code>resume</code> then they
* will be passed as block arguments. Other wise they will be the return
* will be passed as block arguments. Otherwise they will be the return
* value of the call to <code>Fiber.yield</code>
*
* Example: