mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00
merge revision(s) 40431:
* ext/socket/lib/socket.rb: Doc typos by @vipulnsward [Fixes GH-292] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c967493b65
commit
1914720cba
3 changed files with 13 additions and 9 deletions
|
@ -413,7 +413,7 @@ class Socket < BasicSocket
|
|||
# The value of the block is returned.
|
||||
# The socket is closed when this method returns.
|
||||
#
|
||||
# If _port_ is 0, actual port number is choosen dynamically.
|
||||
# If _port_ is 0, actual port number is chosen dynamically.
|
||||
# However all sockets in the result has same port number.
|
||||
#
|
||||
# # tcp_server_sockets returns two sockets.
|
||||
|
@ -425,7 +425,7 @@ class Socket < BasicSocket
|
|||
# #=> #<Addrinfo: [::]:1296 TCP>
|
||||
# # #<Addrinfo: 0.0.0.0:1296 TCP>
|
||||
#
|
||||
# # IPv6 and IPv4 socket has same port number, 53114, even if it is choosen dynamically.
|
||||
# # IPv6 and IPv4 socket has same port number, 53114, even if it is chosen dynamically.
|
||||
# sockets = Socket.tcp_server_sockets(0)
|
||||
# sockets.each {|s| p s.local_address }
|
||||
# #=> #<Addrinfo: [::]:53114 TCP>
|
||||
|
@ -555,8 +555,8 @@ class Socket < BasicSocket
|
|||
# The value of the block is returned.
|
||||
# The sockets are closed when this method returns.
|
||||
#
|
||||
# If _port_ is zero, some port is choosen.
|
||||
# But the choosen port is used for the all sockets.
|
||||
# If _port_ is zero, some port is chosen.
|
||||
# But the chosen port is used for the all sockets.
|
||||
#
|
||||
# # UDP/IP echo server
|
||||
# Socket.udp_server_sockets(0) {|sockets|
|
||||
|
@ -718,9 +718,9 @@ class Socket < BasicSocket
|
|||
|
||||
# UDP/IP address information used by Socket.udp_server_loop.
|
||||
class UDPSource
|
||||
# +remote_adress+ is an Addrinfo object.
|
||||
# +remote_address+ is an Addrinfo object.
|
||||
#
|
||||
# +local_adress+ is an Addrinfo object.
|
||||
# +local_address+ is an Addrinfo object.
|
||||
#
|
||||
# +reply_proc+ is a Proc used to send reply back to the source.
|
||||
def initialize(remote_address, local_address, &reply_proc)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue