diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-02 04:32:45 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-02 04:32:45 +0000 |
commit | 968b8e0199c0d7cfd04323b7771fa27365f9965c (patch) | |
tree | 650679dfaf03e387147f74fbb188e91838a4df0f | |
parent | 96d14df44eb058e1bc16626ed92af14ebdd602c1 (diff) |
* lib/net/http.rb (canonical_each): fix merge miss.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/net/http.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Feb 2 13:31:51 2004 NAKAMURA Usaku <usa@ruby-lang.org> + + * lib/net/http.rb (canonical_each): fix merge miss. + Mon Feb 2 01:54:00 2004 Tanaka Akira <akr@m17n.org> * lib/pp.rb (Struct#pretty_print): make it 1.8 style. diff --git a/lib/net/http.rb b/lib/net/http.rb index 36bc6067b2..f51981477c 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -970,7 +970,7 @@ module Net # :nodoc: end # As for #each_header, except the keys are provided in capitalized form. - def each_capitalized + def canonical_each @header.each do |k,v| yield canonical(k), v end |