fiber.c: fix grammar

`suspend` -> `suspended`
This commit is contained in:
John Bampton
2022-10-26 22:47:18 +10:00
parent 52a3dc2153
commit da4d7d4bc6
+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