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

ruby-changes:41127

From: nobu <ko1@a...>
Date: Sat, 19 Dec 2015 14:28:00 +0900 (JST)
Subject: [ruby-changes:41127] nobu:r53200 (trunk): zlib.c: Fix typo [ci skip]

nobu	2015-12-19 14:27:52 +0900 (Sat, 19 Dec 2015)

  New Revision: 53200

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

  Log:
    zlib.c: Fix typo [ci skip]
    
    * ext/zlib/zlib.c (Init_zlib): [DOC] Fix double-word typo and
      grammatical error.  [Fix GH-1162]

  Modified files:
    trunk/ChangeLog
    trunk/ext/zlib/zlib.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53199)
+++ ChangeLog	(revision 53200)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sat Dec 19 14:28:01 2015  Jake Worth  <jakeworth82@g...>
+
+	* ext/zlib/zlib.c (Init_zlib): [DOC] Fix double-word typo and
+	  grammatical error.  [Fix GH-1162]
+
 Sat Dec 19 14:23:59 2015  Jake Worth  <jakeworth82@g...>
 
 	* lib/csv.rb (CSV#initialize): [DOC] Fix double-word typo.
Index: ext/zlib/zlib.c
===================================================================
--- ext/zlib/zlib.c	(revision 53199)
+++ ext/zlib/zlib.c	(revision 53200)
@@ -4360,7 +4360,7 @@ Init_zlib(void) https://github.com/ruby/ruby/blob/trunk/ext/zlib/zlib.c#L4360
      * pre-compressed data to a deflate stream.
      */
     rb_define_const(mZlib, "NO_COMPRESSION", INT2FIX(Z_NO_COMPRESSION));
-    /* Fastest compression level, but with with lowest space savings. */
+    /* Fastest compression level, but with the lowest space savings. */
     rb_define_const(mZlib, "BEST_SPEED", INT2FIX(Z_BEST_SPEED));
     /* Slowest compression level, but with the best space savings. */
     rb_define_const(mZlib, "BEST_COMPRESSION", INT2FIX(Z_BEST_COMPRESSION));

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

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