From 53b4bf3134ba61163f499ae6d87456ecad95506c Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 23 Feb 2017 01:54:13 +0000 Subject: [PATCH] socket.rb: [DOC] fix nonblock methods * ext/socket/lib/socket.rb (BasicSocket#recv_nonblock): fix exception class and symbol. * ext/socket/lib/socket.rb (BasicSocket#recvmsg_nonblock): ditto. * ext/socket/lib/socket.rb (Socket#recvfrom_nonblock): fix the method name. * ext/socket/lib/socket.rb (UDPSocket#recvfrom_nonblock): both. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/lib/socket.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ext/socket/lib/socket.rb b/ext/socket/lib/socket.rb index b02449c8e7..887b3346c9 100644 --- a/ext/socket/lib/socket.rb +++ b/ext/socket/lib/socket.rb @@ -363,8 +363,8 @@ class BasicSocket < IO # So IO::WaitReadable can be used to rescue the exceptions for retrying recv_nonblock. # # By specifying `exception: false`, the options hash allows you to indicate - # that recv_nonblock should not raise an IO::WaitWritable exception, but - # return the symbol :wait_writable instead. At EOF, it will return nil instead + # that recv_nonblock should not raise an IO::WaitReadable exception, but + # return the symbol :wait_readable instead. At EOF, it will return nil instead # of raising EOFError. # # === See @@ -438,8 +438,8 @@ class BasicSocket < IO # and it doesn't retry the system call. # # By specifying `exception: false`, the _opts_ hash allows you to indicate - # that recvmsg_nonblock should not raise an IO::WaitWritable exception, but - # return the symbol :wait_writable instead. At EOF, it will return nil instead + # that recvmsg_nonblock should not raise an IO::WaitReadable exception, but + # return the symbol :wait_readable instead. At EOF, it will return nil instead # of raising EOFError. def recvmsg_nonblock(dlen = nil, flags = 0, clen = nil, scm_rights: false, exception: true) @@ -516,7 +516,7 @@ class Socket < BasicSocket # recvfrom_nonblock. # # By specifying `exception: false`, the options hash allows you to indicate - # that accept_nonblock should not raise an IO::WaitReadable exception, but + # that recvfrom_nonblock should not raise an IO::WaitReadable exception, but # return the symbol :wait_readable instead. At EOF, it will return nil instead # of raising EOFError. # @@ -1253,8 +1253,8 @@ class UDPSocket < IPSocket # So IO::WaitReadable can be used to rescue the exceptions for retrying recvfrom_nonblock. # # By specifying `exception: false`, the options hash allows you to indicate - # that recvmsg_nonblock should not raise an IO::WaitWritable exception, but - # return the symbol :wait_writable instead. At EOF, it will return nil instead + # that recvfrom_nonblock should not raise an IO::WaitReadable exception, but + # return the symbol :wait_readable instead. At EOF, it will return nil instead # of raising EOFError. # # === See