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

Fix typo in r33849.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-11-26 20:03:32 +00:00
parent 01a64885c3
commit b361c5adec

View file

@ -481,7 +481,7 @@ module Net #:nodoc:
req.form_data = params
req.basic_auth url.user, url.password if url.user
start(url.hostname, url.port,
:use_ssl => uri.scheme == 'https' ) {|http|
:use_ssl => url.scheme == 'https' ) {|http|
http.request(req)
}
end