http.rb: improve docs

* lib/net/http.rb: [DOC] fix typos and grammar

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2017-11-07 20:13:48 +00:00
parent b6db783eed
commit 35bd2ad25e

View File

@ -627,10 +627,10 @@ module Net #:nodoc:
# detection from the environment. To disable proxy detection set +p_addr+ # detection from the environment. To disable proxy detection set +p_addr+
# to nil. # to nil.
# #
# If you are connecting to a custom proxy, +p_addr+ the DNS name or IP # If you are connecting to a custom proxy, +p_addr+ specifies the DNS name
# address of the proxy host, +p_port+ the port to use to access the proxy, # or IP address of the proxy host, +p_port+ the port to use to access the
# +p_user+ and +p_pass+ the username and password if authorization is # proxy, +p_user+ and +p_pass+ the username and password if authorization
# required to use the proxy, and p_no_proxy spcifies hosts which doesn't # is required to use the proxy, and p_no_proxy hosts which do not
# use the proxy. # use the proxy.
# #
def HTTP.new(address, port = nil, p_addr = :ENV, p_port = nil, p_user = nil, p_pass = nil, p_no_proxy = nil) def HTTP.new(address, port = nil, p_addr = :ENV, p_port = nil, p_user = nil, p_pass = nil, p_no_proxy = nil)
@ -746,7 +746,7 @@ module Net #:nodoc:
# Net::ReadTimeout, IOError, EOFError, Errno::ECONNRESET, # Net::ReadTimeout, IOError, EOFError, Errno::ECONNRESET,
# Errno::ECONNABORTED, Errno::EPIPE, OpenSSL::SSL::SSLError, # Errno::ECONNABORTED, Errno::EPIPE, OpenSSL::SSL::SSLError,
# Timeout::Error. # Timeout::Error.
# Should be non-negative integer number. Zero means no retries. # Should be a non-negative integer number. Zero means no retries.
# The default value is 1. # The default value is 1.
def max_retries=(retries) def max_retries=(retries)
retries = retries.to_int retries = retries.to_int