summaryrefslogtreecommitdiff
path: root/ext/zlib
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-10 00:48:49 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-10 00:48:49 +0000
commit718ab93d4df1f655abf5f5724f59fd91762b79f1 (patch)
tree26ae5402f95c04b4fc93f7c743d3282e725a4d8a /ext/zlib
parent04e3e2de568956030c1868c9846506989d8a2392 (diff)
* ext/zlib/zlib.c (rb_deflate_s_deflate): Fixed ruby example replacing
NO_FLUSH with FINISH. [ruby-trunk - Bug #6273] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/zlib')
-rw-r--r--ext/zlib/zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 56a6acc289..d8cbe2fd65 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -1434,7 +1434,7 @@ deflate_run(VALUE args)
*
* def deflate(string, level)
* z = Zlib::Deflate.new(level)
- * dst = z.deflate(string, Zlib::NO_FLUSH)
+ * dst = z.deflate(string, Zlib::FINISH)
* z.close
* dst
* end