From 3a47cf3395dd4c4fe8bdd5df13aab698f2ca314b Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 15 May 2011 11:55:52 +0000 Subject: * remove trailing spaces. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/zlib/zlib.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'ext/zlib/zlib.c') diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 7a595e32ee..c41e4e29eb 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -219,7 +219,7 @@ static VALUE rb_gzreader_each(int, VALUE*, VALUE); static VALUE rb_gzreader_readlines(int, VALUE*, VALUE); #endif /* GZIP_SUPPORT */ -/* +/* * Document-module: Zlib * * == Overview @@ -227,7 +227,7 @@ static VALUE rb_gzreader_readlines(int, VALUE*, VALUE); * Access to the zlib library. * * == Class tree - * + * * - Zlib::Deflate * - Zlib::Inflate * - Zlib::ZStream @@ -1264,7 +1264,7 @@ rb_deflate_s_allocate(VALUE klass) * filter (or predictor), HUFFMAN_ONLY to force Huffman encoding only (no * string match). * - * == Description + * == Description * * Creates a new deflate stream for compression. See zlib.h for details of * each argument. If an argument is nil, the default value of that argument is @@ -1276,14 +1276,14 @@ rb_deflate_s_allocate(VALUE klass) * === basic * * f = File.new("compressed.file","w+") - * #=> # + * #=> # * f << Zlib::Deflate.new().deflate(File.read("big.file")) - * #=> # + * #=> # * f.close - * #=> nil + * #=> nil * * === a little more robust - * + * * compressed_file = File.open("compressed.file", "w+") * #=> # * zd = Zlib::Deflate.new(Zlib::BEST_COMPRESSION, 15, Zlib::MAX_MEM_LEVEL, Zlib::HUFFMAN_ONLY) @@ -1423,7 +1423,7 @@ do_deflate(struct zstream *z, VALUE src, int flush) * call-seq: deflate(string[, flush]) * * == Arguments - * + * * +string+:: * String * @@ -1446,7 +1446,7 @@ do_deflate(struct zstream *z, VALUE src, int flush) * == Usage * * comp = Zlib.deflate(File.read("big.file")) - * or + * or * comp = Zlib.deflate(File.read("big.file"), Zlib::FULL_FLUSH) * */ @@ -1611,7 +1611,7 @@ rb_inflate_s_allocate(VALUE klass) } /* - * Document-method: Zlib::Inflate.new + * Document-method: Zlib::Inflate.new * * call-seq: Zlib::Inflate.new(window_bits) * @@ -1639,7 +1639,7 @@ rb_inflate_s_allocate(VALUE klass) * zi.close * cf.close * - * or + * or * * File.open("compressed.file") {|cf| * zi = Zlib::Inflate.new @@ -4027,13 +4027,13 @@ Init_zlib() rb_define_method(cZStream, "flush_next_out", rb_zstream_flush_next_out, 0); /* Integer representing date types which - * ZStream#data_type method returns */ + * ZStream#data_type method returns */ rb_define_const(mZlib, "BINARY", INT2FIX(Z_BINARY)); /* Integer representing date types which - * ZStream#data_type method returns */ + * ZStream#data_type method returns */ rb_define_const(mZlib, "ASCII", INT2FIX(Z_ASCII)); /* Integer representing date types which - * ZStream#data_type method returns */ + * ZStream#data_type method returns */ rb_define_const(mZlib, "UNKNOWN", INT2FIX(Z_UNKNOWN)); cDeflate = rb_define_class_under(mZlib, "Deflate", cZStream); @@ -4317,7 +4317,7 @@ Init_zlib() * * Subclass of Zlib::Error * - * When zlib returns a Z_STREAM_ERROR, + * When zlib returns a Z_STREAM_ERROR, * usually if the stream state was inconsistent. * */ -- cgit v1.2.3