Merge pull request #5829 from jbampton/fiber-c-fix-grammar

fiber.c: fix grammar
This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-10-26 22:09:58 +09:00
committed by GitHub
+1 -1
View File
@@ -14,7 +14,7 @@
* call-seq:
* Fiber.new{...} -> obj
*
* Creates a fiber, whose execution is suspend until it is explicitly
* Creates a fiber, whose execution is suspended 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