[前][次][番号順一覧][スレッド一覧]

ruby-changes:19830

From: drbrain <ko1@a...>
Date: Wed, 1 Jun 2011 07:25:44 +0900 (JST)
Subject: [ruby-changes:19830] drbrain:r31876 (trunk): * ext/zlib/zlib.c: Fix document-method declarations for set_sync and

drbrain	2011-06-01 07:25:32 +0900 (Wed, 01 Jun 2011)

  New Revision: 31876

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31876

  Log:
    * ext/zlib/zlib.c:  Fix document-method declarations for set_sync and
      set_comment.  [Ruby 1.9 - Bug #4695]

  Modified files:
    trunk/ChangeLog
    trunk/ext/zlib/zlib.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31875)
+++ ChangeLog	(revision 31876)
@@ -1,3 +1,8 @@
+Wed Jun  1 07:21:40 2011  Eric Hodel  <drbrain@s...>
+
+	* ext/zlib/zlib.c:  Fix document-method declarations for set_sync and
+	  set_comment.  [Ruby 1.9 - Bug #4695]
+
 Wed Jun  1 06:43:13 2011  Masaya Tarui  <tarui@r...>
 
 	* load.c (loaded_feature_path): cut nonsence loop execution to fix
Index: ext/zlib/zlib.c
===================================================================
--- ext/zlib/zlib.c	(revision 31875)
+++ ext/zlib/zlib.c	(revision 31876)
@@ -2960,7 +2960,7 @@
 }
 
 /*
- * Document-method: Zlib::GzipFile#set_comment
+ * Document-method: Zlib::GzipFile#comment=
  *
  * Specify the comment (+str+) in the gzip header.
  */
@@ -3057,7 +3057,7 @@
 }
 
 /*
- * Document-method: Zlib::GzipFile#set_sync
+ * Document-method: Zlib::GzipFile#sync=
  *
  * call-seq: sync = flag
  *

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]