aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-08 13:22:27 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-08 13:22:27 +0000
commit518a3402531ea898c6fc72bb8ce5a381eb4f06ef (patch)
treef3dfb6cc5e64029f6cac00fe8995ced1922d14a5 /ChangeLog
parent2fbf66a7e1fd2296c8e9bcb14ac223ea631bd55e (diff)
downloadruby-518a3402531ea898c6fc72bb8ce5a381eb4f06ef.tar.gz
* ChangeLog: fix typos.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 454198be28..7165502297 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
Thu Dec 8 13:26:24 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* test/rexml/test_order.rb (OrderTester#test_more_ordering): use
- GZip::GzReader.open instead of GZip::GzReader.new with File.new.
+ Zlib::GzipReader.open instead of Zlib::GzipReader.new with File.new.
fixed a test error on Windows introduced at r33946.
Thu Dec 8 13:11:26 2011 NAKAMURA Usaku <usa@ruby-lang.org>
@@ -132,7 +132,7 @@ Mon Dec 5 10:18:45 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/zlib/zlib.c (rb_gzreader_initialize): revert a part of r33937.
1st, to change the mode of an IO is very sensitive problem, so
the maintainer of this library should judge it.
- 2nd, usually Zlib::GzReader.new is not called directly. #initialize
+ 2nd, usually Zlib::GzipReader.new is not called directly. #initialize
is called via .open, and in the method the I/O is opened in binary
mode, so there is no problem without changing the mode in #initialize.