about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-03-16 20:18:22 -0700
committerEric Wong <normalperson@yhbt.net>2011-03-16 20:18:22 -0700
commit37718b5833f04870d14bfdca3dc84e4f885c71d9 (patch)
tree8dec5e9f34acbe23e977c1082da5bc3604b6c1e9 /lib
parent744c4c11c58f40c925c0d36eefb2287095a2f127 (diff)
downloadraindrops-37718b5833f04870d14bfdca3dc84e4f885c71d9.tar.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/raindrops/watcher.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/raindrops/watcher.rb b/lib/raindrops/watcher.rb
index 8167dfd..24c467d 100644
--- a/lib/raindrops/watcher.rb
+++ b/lib/raindrops/watcher.rb
@@ -309,7 +309,6 @@ class Raindrops::Watcher
   def tail(addr, env)
     Tailer.new(self, addr, env).finish
   end
-  # :startdoc:
 
   # This is the response body returned for "/tail/$ADDRESS.txt".  This
   # must use a multi-threaded Rack server with streaming response support.
@@ -353,10 +352,11 @@ class Raindrops::Watcher
     end
   end
 
-  # shuts down the background thread
+  # shuts down the background thread, only for tests
   def shutdown
     @socket = nil
     @thr.join if @thr
     @thr = nil
   end
+  # :startdoc:
 end