From 413606e3e0ab00f834a414227f89fde642f7a8b2 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 19 Dec 2015 05:27:52 +0000 Subject: 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 --- ext/zlib/zlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/zlib/zlib.c') diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index db7032d2b2..25b3e7afab 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -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)); -- cgit v1.2.3