aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-10 05:16:17 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-10 05:16:17 +0000
commite0aacec0d21355d0a0afe951c394e91ebdd15df4 (patch)
treed360d6f0ff8fdbeac9dd12e2cf43e49c245ec007 /cont.c
parent96d81f80078c9cba3abffe8f171b20b7cea9d63f (diff)
downloadruby-e0aacec0d21355d0a0afe951c394e91ebdd15df4.tar.gz
* cont.c: fix a double word typo.
[Bug #11313][ruby-core:69749] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53023 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 3278f6777b..24b1a4cb1f 100644
--- a/cont.c
+++ b/cont.c
@@ -1112,7 +1112,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