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

* lib/net/http.rb: remove junk.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2004-12-15 18:27:44 +00:00
parent e0ddacfc36
commit 64b5b2b1a2
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Dec 16 03:27:10 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb: remove junk.
Thu Dec 16 00:57:30 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/syck/rubyext.c (rb_syck_io_str_read): [ruby-core:03973]

View file

@ -1101,7 +1101,7 @@ module Net # :nodoc:
# Iterates for each header names.
def each_name(&block) #:yield: +key+
e @header.each_key(&block)
@header.each_key(&block)
end
alias each_key each_name