Commit 6492a3cd authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge branch 'master' of github.com:mruby/mruby

parents 58b25fdc 2b1ca488
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
* call-seq: * call-seq:
* Fiber.new{...} -> obj * Fiber.new{...} -> obj
* *
* Creates an fiber, whose execution is suspend until it explicitly * Creates a fiber, whose execution is suspend until it is explicitly
* resumed using <code>Fibder#resume</code> method. * resumed using <code>Fiber#resume</code> method.
* The code running inside the fiber can give up control by calling * 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 * <code>Fiber.yield</code> in which case it yields control back to caller
* (the caller of the <code>Fiber#resume</code>). * (the caller of the <code>Fiber#resume</code>).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment