diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-05-20 22:34:14 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-05-20 22:34:14 +0900 |
| commit | 6492a3cdb882567d3da9839c851a756571e04a18 (patch) | |
| tree | b93725a354935aff6d0751aed187b45f4d9d7916 | |
| parent | 58b25fdcb3bf92050296a624abc4934b83fab01c (diff) | |
| parent | 2b1ca488fb50d9db526c1b887b39bd6db113d4f8 (diff) | |
| download | mruby-6492a3cdb882567d3da9839c851a756571e04a18.tar.gz mruby-6492a3cdb882567d3da9839c851a756571e04a18.zip | |
Merge branch 'master' of github.com:mruby/mruby
| -rw-r--r-- | mrbgems/mruby-fiber/src/fiber.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-fiber/src/fiber.c b/mrbgems/mruby-fiber/src/fiber.c index 5dec8a3c0..e46e3cb02 100644 --- a/mrbgems/mruby-fiber/src/fiber.c +++ b/mrbgems/mruby-fiber/src/fiber.c @@ -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>). |
