summaryrefslogtreecommitdiff
path: root/ext/socket
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-02 22:31:50 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-02 22:31:50 +0000
commite53c88a44f691176941b528e389db01c6884930d (patch)
tree481632d01d386584539a43560ac7b3389fc78979 /ext/socket
parenta1dd4a613a521dd4250c26b1aab7e40f49b0d4e9 (diff)
rdoc update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket')
-rw-r--r--ext/socket/lib/socket.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/socket/lib/socket.rb b/ext/socket/lib/socket.rb
index 778c1aa710..dc9cda9776 100644
--- a/ext/socket/lib/socket.rb
+++ b/ext/socket/lib/socket.rb
@@ -46,7 +46,7 @@ class AddrInfo
end
private :connect_internal
- # creates a socket connected to self.
+ # creates a socket connected to the address of self.
#
# If one or more arguments given as _local_addr_args_,
# it is used as the local address of the socket.
@@ -72,7 +72,7 @@ class AddrInfo
connect_internal(family_addrinfo(*local_addr_args), &block)
end
- # creates a socket connected to self.
+ # creates a socket connected to the address of self.
#
# If a block is given, it is called with the socket and the value of the block is returned.
# The socket is returned otherwise.