about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-02-07 18:51:50 -0800
committerEric Wong <normalperson@yhbt.net>2011-02-07 18:51:50 -0800
commit40871775044a88662b9593d86a631755ca516bab (patch)
treea78bdbf16a3ecb0bc5816b676e5d2bd68a845260 /lib
parent53bac4f65d9430495c8043b239cc936012ea7a8d (diff)
downloadrainbows-40871775044a88662b9593d86a631755ca516bab.tar.gz
Don't need to document things that aren't ready, yet.
Diffstat (limited to 'lib')
-rw-r--r--lib/rainbows/epoll/server.rb2
-rw-r--r--lib/rainbows/join_threads.rb2
-rw-r--r--lib/rainbows/reverse_proxy.rb1
-rw-r--r--lib/rainbows/reverse_proxy/multi_thread.rb1
4 files changed, 4 insertions, 2 deletions
diff --git a/lib/rainbows/epoll/server.rb b/lib/rainbows/epoll/server.rb
index 96b3308..58e7653 100644
--- a/lib/rainbows/epoll/server.rb
+++ b/lib/rainbows/epoll/server.rb
@@ -1,5 +1,5 @@
 # -*- encoding: binary -*-
-# :nodoc:
+# :enddoc:
 module Rainbows::Epoll::Server
   @@nr = 0
   Rainbows::Epoll.nr_clients = lambda { @@nr }
diff --git a/lib/rainbows/join_threads.rb b/lib/rainbows/join_threads.rb
index 6636e7c..ba67c94 100644
--- a/lib/rainbows/join_threads.rb
+++ b/lib/rainbows/join_threads.rb
@@ -1,5 +1,5 @@
 # -*- encoding: binary -*-
-# :nodoc:
+# :enddoc:
 # This module only gets loaded on shutdown
 module Rainbows::JoinThreads
 
diff --git a/lib/rainbows/reverse_proxy.rb b/lib/rainbows/reverse_proxy.rb
index d4cd5d2..b96fa47 100644
--- a/lib/rainbows/reverse_proxy.rb
+++ b/lib/rainbows/reverse_proxy.rb
@@ -1,4 +1,5 @@
 # -*- encoding: binary -*-
+# :enddoc:
 require 'socket'
 require 'thread'
 require 'uri'
diff --git a/lib/rainbows/reverse_proxy/multi_thread.rb b/lib/rainbows/reverse_proxy/multi_thread.rb
index 6714bc0..67f7740 100644
--- a/lib/rainbows/reverse_proxy/multi_thread.rb
+++ b/lib/rainbows/reverse_proxy/multi_thread.rb
@@ -1,4 +1,5 @@
 # -*- encoding -*-
+# :enddoc:
 module Rainbows::ReverseProxy::MultiThread
   def pick_upstream(env)
     @lock.synchronize { super(env) }