From 1487d9743b6e5082676c194d023b6dabaa53085c Mon Sep 17 00:00:00 2001 From: matz Date: Sun, 28 Dec 2008 22:16:19 +0000 Subject: [PATCH] * cont.c: small RDoc fix mentioned from in [ruby-core:20921]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ cont.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c2d80166f2..ba3908fd84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Dec 29 07:15:16 2008 Yukihiro Matsumoto + + * cont.c: small RDoc fix mentioned from + in [ruby-core:20921]. + Mon Dec 29 03:43:25 2008 Koichi Sasada * ruby.c (process_options): set th->base_block only while diff --git a/cont.c b/cont.c index 22c7fb3720..c0db5083a8 100644 --- a/cont.c +++ b/cont.c @@ -611,7 +611,7 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval) * * The Fiber#resume method accepts an arbitary number of * parameters, if it is the first call to resume 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 Fiber.yield * * Example: