summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-28 22:16:19 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-28 22:16:19 +0000
commit82f1c0264bb9e7ca896df3844a49443c99e394e2 (patch)
tree236228992e6e407b255d7454db70e2b6a29fee05
parentd726f734b6198e21a5950c74834a0ef657ded315 (diff)
downloadruby-82f1c0264bb9e7ca896df3844a49443c99e394e2.tar.gz
ruby-82f1c0264bb9e7ca896df3844a49443c99e394e2.tar.xz
ruby-82f1c0264bb9e7ca896df3844a49443c99e394e2.zip
* cont.c: small RDoc fix mentioned from <radek.bulat at gmail.com>
in [ruby-core:20921]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--cont.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c2d80166f..ba3908fd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/cont.c b/cont.c
index 22c7fb372..c0db5083a 100644
--- a/cont.c
+++ b/cont.c
@@ -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: