aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/zlib/zlib.c6
2 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e3635034f..2e2988b49a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -27,13 +27,13 @@ Tue Jan 26 20:23:22 2010 Yusuke Endoh <mame@tsg.ne.jp>
Tue Jan 26 20:21:28 2010 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/drb/eq.rb: fix circular requrie in drb.
- reported by akr. see [ruby-dev:40156] [ruby-core:27661]
+ reported by akr. see [ruby-dev:40156] [ruby-core:27661]
Tue Jan 26 19:59:17 2010 NARUSE, Yui <naruse@ruby-lang.org>
- * ext/zlib/zlib.c (rb_gzfile_s_wrap): add rdoc.
- patched by Hugh Sasse [ruby-core:27692]
+ * ext/zlib/zlib.c (rb_gzfile_s_wrap): add rdoc. [Bug #2656]
+ patched by Hugh Sasse [ruby-core:27692] [ruby-core:27852]
* ext/zlib/doc/zlib.rd: removed.
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index bdc0a5eadc..cfe6dd23cb 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -2420,12 +2420,14 @@ gzfile_ensure_close(VALUE obj)
}
/*
- * Creates a GzipFile object associated with ((|io|)), and
+ * call-seq: Zlib::GzipFile.wrap(io) { |gz| ... }
+ *
+ * Creates a GzipFile object associated with +io+, and
* executes the block with the newly created GzipFile object,
* just like File.open. The GzipFile object will be closed
* automatically after executing the block. If you want to keep
* the associated IO object opening, you may call
- * ((<Zlib::GzipFile#finish>)) method in the block.
+ * +Zlib::GzipFile#finish+ method in the block.
*/
static VALUE
rb_gzfile_s_wrap(int argc, VALUE *argv, VALUE klass)