ruby-changes:31764
From: zzak <ko1@a...>
Date: Mon, 25 Nov 2013 19:49:49 +0900 (JST)
Subject: [ruby-changes:31764] zzak:r43843 (trunk): * lib/uri/common.rb: [DOC] typo fixes by @vipulnsward [Fixes GH-456]
zzak 2013-11-25 19:49:29 +0900 (Mon, 25 Nov 2013) New Revision: 43843 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43843 Log: * lib/uri/common.rb: [DOC] typo fixes by @vipulnsward [Fixes GH-456] https://github.com/ruby/ruby/pull/456 * lib/uri/generic.rb: [DOC] ditto. Modified files: trunk/ChangeLog trunk/lib/uri/common.rb trunk/lib/uri/generic.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 43842) +++ ChangeLog (revision 43843) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Nov 25 19:48:10 2013 Zachary Scott <e@z...> + + * lib/uri/common.rb: [DOC] typo fixes by @vipulnsward [Fixes GH-456] + https://github.com/ruby/ruby/pull/456 + * lib/uri/generic.rb: [DOC] ditto. + Mon Nov 25 14:34:42 2013 Zachary Scott <e@z...> * ext/bigdecimal/bigdecimal.gemspec: bump BigDecimal to 1.2.3 for Index: lib/uri/common.rb =================================================================== --- lib/uri/common.rb (revision 43842) +++ lib/uri/common.rb (revision 43843) @@ -74,7 +74,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/lib/uri/common.rb#L74 # The constructor accepts a hash as options for parser. # Keys of options are pattern names of URI components # and values of options are pattern strings. - # The constructor generetes set of regexps for parsing URIs. + # The constructor generates set of regexps for parsing URIs. # # You can use the following keys: # Index: lib/uri/generic.rb =================================================================== --- lib/uri/generic.rb (revision 43842) +++ lib/uri/generic.rb (revision 43843) @@ -552,7 +552,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/lib/uri/generic.rb#L552 protected :set_password # returns the userinfo +ui+ as user, password - # if properly formated as 'user:password' + # if properly formatted as 'user:password' def split_userinfo(ui) return nil, nil unless ui user, password = ui.split(/:/, 2) @@ -672,7 +672,7 @@ module URI https://github.com/ruby/ruby/blob/trunk/lib/uri/generic.rb#L672 # u.hostname = "::1" # p u.to_s #=> "http://[::1]/bar" # - # If the arugument seems IPv6 address, + # If the arguement seems IPv6 address, # it is wrapped by brackets. # def hostname=(v) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/