about summary refs log tree commit homepage
path: root/lib/rainbows/fiber_spawn.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-25 12:14:21 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-25 13:01:21 -0800
commit06de4af18d1ba3b28e49e9d8f700df4eca36e635 (patch)
treea0481043f33be4a099f7e8f0e5e4a1a46fe99d6d /lib/rainbows/fiber_spawn.rb
parent7da8f7696fafc22a50dbcded6ca44cad7ae32ab6 (diff)
downloadrainbows-06de4af18d1ba3b28e49e9d8f700df4eca36e635.tar.gz
Diffstat (limited to 'lib/rainbows/fiber_spawn.rb')
-rw-r--r--lib/rainbows/fiber_spawn.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/rainbows/fiber_spawn.rb b/lib/rainbows/fiber_spawn.rb
index d1c1ec0..969c05b 100644
--- a/lib/rainbows/fiber_spawn.rb
+++ b/lib/rainbows/fiber_spawn.rb
@@ -4,9 +4,10 @@ require 'rainbows/fiber'
 module Rainbows
 
   # Simple Fiber-based concurrency model for 1.9.  This spawns a new
-  # Fiber for every client connection.  This exports a streaming
+  # Fiber for every incoming client connection and the root Fiber for
+  # scheduling and connection acceptance.  This exports a streaming
   # "rack.input" with lightweight concurrency.  Applications are
-  # strongly advised to wrap slow all IO objects (sockets, pipes) using
+  # strongly advised to wrap all slow IO objects (sockets, pipes) using
   # the Rainbows::Fiber::IO class whenever possible.
 
   module FiberSpawn