diff --git a/mrbgems/mruby-fiber/src/fiber.c b/mrbgems/mruby-fiber/src/fiber.c
index 51495e9bd..361013e02 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 Fibder#resume method.
+ * Creates a fiber, whose execution is suspend until it is explicitly
+ * resumed using Fiber#resume method.
* The code running inside the fiber can give up control by calling
* Fiber.yield in which case it yields control back to caller
* (the caller of the Fiber#resume).