about summary refs log tree commit homepage
path: root/lib/rainbows/fiber_pool.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/fiber_pool.rb')
-rw-r--r--lib/rainbows/fiber_pool.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/fiber_pool.rb b/lib/rainbows/fiber_pool.rb
index e178154..c62345d 100644
--- a/lib/rainbows/fiber_pool.rb
+++ b/lib/rainbows/fiber_pool.rb
@@ -19,7 +19,7 @@ module Rainbows::FiberPool
     worker_connections.times {
       Fiber.new {
         process(Fiber.yield) while pool << Fiber.current
-      }.resume # resume to hit ::Fiber.yield so it waits on a client
+      }.resume # resume to hit Fiber.yield so it waits on a client
     }
     Rainbows::Fiber::Base.setup(self.class, app)