From 718ab93d4df1f655abf5f5724f59fd91762b79f1 Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 10 Apr 2012 00:48:49 +0000 Subject: * 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 --- ext/zlib/zlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/zlib') 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 -- cgit v1.2.1