fix unbalanced square brackets

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50922 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2015-06-16 14:40:20 +00:00
parent 02f2b5eff6
commit af68619a6c
2 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ udp_send(int argc, VALUE *argv, VALUE sock)
/* /*
* call-seq: * call-seq:
* udpsocket.recvfrom_nonblock(maxlen [, flags [, options]) => [mesg, sender_inet_addr] * udpsocket.recvfrom_nonblock(maxlen [, flags [, options]]) => [mesg, sender_inet_addr]
* *
* Receives up to _maxlen_ bytes from +udpsocket+ using recvfrom(2) after * Receives up to _maxlen_ bytes from +udpsocket+ using recvfrom(2) after
* O_NONBLOCK is set for the underlying file descriptor. * O_NONBLOCK is set for the underlying file descriptor.

View File

@ -131,7 +131,7 @@ unix_path(VALUE sock)
/* /*
* call-seq: * call-seq:
* unixsocket.recvfrom(maxlen [, flags[, outbuf]) => [mesg, unixaddress] * unixsocket.recvfrom(maxlen [, flags[, outbuf]]) => [mesg, unixaddress]
* *
* Receives a message via _unixsocket_. * Receives a message via _unixsocket_.
* *