diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-11-08 01:38:06 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-11-08 01:38:06 +0000 |
commit | baddc0cbf9a4c8d0f3b52a9e78e0824a14c46357 (patch) | |
tree | a25c2ef556edfb5740863ab6e25fa1060c596771 /lib | |
parent | 1dd547fe5a3eca165488d6ac5951c61069b7f9c6 (diff) | |
download | ruby-baddc0cbf9a4c8d0f3b52a9e78e0824a14c46357.tar.gz |
* lib/uri/ftp.rb: fix a typo.
[fix GH-1084][ci skip] Patch by @windwiny
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/uri/ftp.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/uri/ftp.rb b/lib/uri/ftp.rb index 557e1fda33..a90e9b20fd 100644 --- a/lib/uri/ftp.rb +++ b/lib/uri/ftp.rb @@ -85,8 +85,8 @@ module URI # require 'uri' # # uri = URI::FTP.build(['user:password', 'ftp.example.com', nil, - # '/path/file.> zip', 'i']) - # puts uri.to_s -> ftp://user:password@ftp.example.com/%2Fpath/file.zip;type=a + # '/path/file.zip', 'i']) + # puts uri.to_s -> ftp://user:password@ftp.example.com/%2Fpath/file.zip;type=i # # uri2 = URI::FTP.build({:host => 'ftp.example.com', # :path => 'ruby/src'}) |