mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
567eb15df3
commit
88c78ef17c
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Dec 10 14:15:59 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||
|
||||
* cont.c: fix a double word typo.
|
||||
[Bug #11313][ruby-core:69749]
|
||||
|
||||
Thu Dec 10 14:13:34 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||
|
||||
* ext/tk/lib/multi-tk.rb: fix typos.
|
||||
|
|
2
cont.c
2
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
|
||||
|
|
Loading…
Reference in a new issue