From 977267c2e0218d6b182807ddf9b7c1d929c40bed Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 22 Apr 2010 08:04:13 +0000 Subject: * ext/**/*.[ch]: removed trailing spaces. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/udpsocket.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/socket/udpsocket.c') diff --git a/ext/socket/udpsocket.c b/ext/socket/udpsocket.c index e0ce443090..b278523eba 100644 --- a/ext/socket/udpsocket.c +++ b/ext/socket/udpsocket.c @@ -137,7 +137,7 @@ udp_bind(VALUE sock, VALUE host, VALUE port) * udpsocket.send(mesg, flags) => numbytes_sent * * Sends _mesg_ via _udpsocket_. - * + * * _flags_ should be a bitwise OR of Socket::MSG_* constants. * * u1 = UDPSocket.new @@ -195,7 +195,7 @@ udp_send(int argc, VALUE *argv, VALUE sock) * call-seq: * udpsocket.recvfrom_nonblock(maxlen) => [mesg, sender_inet_addr] * udpsocket.recvfrom_nonblock(maxlen, flags) => [mesg, sender_inet_addr] - * + * * Receives up to _maxlen_ bytes from +udpsocket+ using recvfrom(2) after * O_NONBLOCK is set for the underlying file descriptor. * If _maxlen_ is omitted, its default value is 65536. @@ -206,11 +206,11 @@ udp_send(int argc, VALUE *argv, VALUE sock) * When recvfrom(2) returns 0, * Socket#recvfrom_nonblock returns an empty string as data. * It means an empty packet. - * + * * === Parameters * * +maxlen+ - the number of bytes to receive from the socket - * * +flags+ - zero or more of the +MSG_+ options - * + * * +flags+ - zero or more of the +MSG_+ options + * * === Example * require 'socket' * s1 = UDPSocket.new @@ -228,7 +228,7 @@ udp_send(int argc, VALUE *argv, VALUE sock) * end * * Refer to Socket#recvfrom for the exceptions that may be thrown if the call - * to _recvfrom_nonblock_ fails. + * to _recvfrom_nonblock_ fails. * * UDPSocket#recvfrom_nonblock may raise any error corresponding to recvfrom(2) failure, * including Errno::EWOULDBLOCK. -- cgit v1.2.3