mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
zlib.c: Fix typo [ci skip]
* ext/zlib/zlib.c (Init_zlib): [DOC] Fix double-word typo and grammatical error. [Fix GH-1162] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0d1a243af1
commit
26bc97bda4
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sat Dec 19 14:28:01 2015 Jake Worth <jakeworth82@gmail.com>
|
||||
|
||||
* 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@gmail.com>
|
||||
|
||||
* lib/csv.rb (CSV#initialize): [DOC] Fix double-word typo.
|
||||
|
|
|
@ -4360,7 +4360,7 @@ Init_zlib(void)
|
|||
* 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));
|
||||
|
|
Loading…
Reference in a new issue