about summary refs log tree commit homepage
path: root/lib/kgio.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kgio.rb')
-rw-r--r--lib/kgio.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kgio.rb b/lib/kgio.rb
index 2ff366e..0d28d4e 100644
--- a/lib/kgio.rb
+++ b/lib/kgio.rb
@@ -8,11 +8,11 @@ module Kgio
   LOCALHOST = '127.0.0.1'
 
   # Kgio::PipeMethods#kgio_tryread and Kgio::SocketMethods#kgio_tryread will
-  # return this constant when waiting for a read is required.
+  # return :wait_readable when waiting for a read is required.
   WaitReadable = :wait_readable
 
-  # PipeMethods#kgio_trywrite and SocketMethods#kgio_trywrite will
-  # return this constant when waiting for a read is required.
+  # PipeMethods#kgio_trywrite and SocketMethods#kgio_trywrite will return
+  # :wait_writable when waiting for a read is required.
   WaitWritable = :wait_writable
 end