aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-08 01:38:06 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-08 01:38:06 +0000
commitbaddc0cbf9a4c8d0f3b52a9e78e0824a14c46357 (patch)
treea25c2ef556edfb5740863ab6e25fa1060c596771
parent1dd547fe5a3eca165488d6ac5951c61069b7f9c6 (diff)
downloadruby-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
-rw-r--r--ChangeLog5
-rw-r--r--lib/uri/ftp.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e16c963589..dd5cad2be5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Nov 8 10:37:58 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
+
+ * lib/uri/ftp.rb: fix a typo.
+ [fix GH-1084][ci skip] Patch by @windwiny
+
Sun Nov 8 08:10:31 2015 Koichi Sasada <ko1@atdot.net>
* vm_trace.c (exec_hooks_precheck): check need_clean everytime
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'})