Change Fibder to Fiber and a couple other wording issues

This commit is contained in:
Carson McDonald
2013-05-20 07:57:12 -04:00
parent 7320139fd9
commit cc772dd3cc
+2 -2
View File
@@ -10,8 +10,8 @@
* call-seq:
* Fiber.new{...} -> obj
*
* Creates an fiber, whose execution is suspend until it explicitly
* resumed using <code>Fibder#resume</code> method.
* Creates a fiber, whose execution is suspend until it is explicitly
* resumed using <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
* (the caller of the <code>Fiber#resume</code>).