1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

socket.c,tcpsocket.c: improve deprecation notices

* ext/socket/socket.c: [DOC] fix grammar in deprecation notices.
* ext/socket/tcpsocket.c: [DOC] ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2017-11-07 20:13:00 +00:00
parent 995fd6d720
commit b6db783eed
2 changed files with 12 additions and 12 deletions

View file

@ -42,11 +42,11 @@ tcp_sockaddr(struct sockaddr *addr, socklen_t len)
* TCPSocket.gethostbyname(hostname) => [official_hostname, alias_hostnames, address_family, *address_list]
*
* Use Addrinfo.getaddrinfo instead.
* This method is deprecated since following reasons:
* This method is deprecated for the following reasons:
*
* - The 3rd element of result is the address family of the first address.
* The address families of rest addresses are not returned.
* - gethostbyname() is may take long time and it may block other threads.
* - The 3rd element of the result is the address family of the first address.
* The address families of the rest of the addresses are not returned.
* - gethostbyname() may take a long time and it may block other threads.
* (GVL cannot be released since gethostbyname() is not thread safe.)
* - This method uses gethostbyname() function already removed from POSIX.
*