summaryrefslogtreecommitdiff
path: root/cont.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 20:06:21 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-20 20:06:21 +0000
commit60c7009f02bbf53de35f94ee20f268fbea3aad1e (patch)
treef64a731458031077ecdc8659544d8df9032765d4 /cont.c
parent02262a559f205e27cb470ab0693b383e1a259b8b (diff)
merge revision(s) 53023: [Backport #11313]
* cont.c: fix a double word typo. [Bug #11313][ruby-core:69749] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@53222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cont.c b/cont.c
index 22e0c5abe0..457c6154cf 100644
--- a/cont.c
+++ b/cont.c
@@ -1093,7 +1093,7 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval)
* comes with a small 4KB stack. This enables the fiber to be paused from deeply
* nested function calls within the fiber block.
*
- * When a fiber is created it will not run automatically. Rather it must be
+ * When a fiber is created it will not run automatically. Rather it must
* be explicitly asked to run using the <code>Fiber#resume</code> method.
* The code running inside the fiber can give up control by calling
* <code>Fiber.yield</code> in which case it yields control back to caller