summaryrefslogtreecommitdiff
path: root/prelude.rb
diff options
context:
space:
mode:
Diffstat (limited to 'prelude.rb')
-rw-r--r--prelude.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/prelude.rb b/prelude.rb
index 231c64e95a..5ebf1166ea 100644
--- a/prelude.rb
+++ b/prelude.rb
@@ -70,7 +70,8 @@ class IO
#
# By specifying `exception: false`, the options hash allows you to indicate
# that read_nonblock should not raise an IO::WaitReadable exception, but
- # return the symbol :wait_readable instead.
+ # return the symbol :wait_readable instead. At EOF, it will return nil instead
+ # of raising EOFError.
def read_nonblock(len, buf = nil, exception: true)
__read_nonblock(len, buf, exception)
end
@@ -128,7 +129,8 @@ class IO
#
# By specifying `exception: false`, the options hash allows you to indicate
# that write_nonblock should not raise an IO::WaitWritable exception, but
- # return the symbol :wait_writable instead.
+ # return the symbol :wait_writable instead. At EOF, it will return nil instead
+ # of raising EOFError.
def write_nonblock(buf, exception: true)
__write_nonblock(buf, exception)
end