From 50a504654d2c54b270615541ab66af7c4f3d664f Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 27 Oct 2014 16:57:33 +0000 Subject: libgo: Update to Go 1.3.3 release. From-SVN: r216746 --- libgo/go/compress/gzip/gzip.go | 3 ++- libgo/go/compress/zlib/writer.go | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'libgo/go/compress') diff --git a/libgo/go/compress/gzip/gzip.go b/libgo/go/compress/gzip/gzip.go index 3a0bf54..5131d12 100644 --- a/libgo/go/compress/gzip/gzip.go +++ b/libgo/go/compress/gzip/gzip.go @@ -245,7 +245,8 @@ func (z *Writer) Flush() error { return z.err } -// Close closes the Writer. It does not close the underlying io.Writer. +// Close closes the Writer, flushing any unwritten data to the underlying +// io.Writer, but does not close the underlying io.Writer. func (z *Writer) Close() error { if z.err != nil { return z.err diff --git a/libgo/go/compress/zlib/writer.go b/libgo/go/compress/zlib/writer.go index fac7e15..3b4313a 100644 --- a/libgo/go/compress/zlib/writer.go +++ b/libgo/go/compress/zlib/writer.go @@ -174,7 +174,8 @@ func (z *Writer) Flush() error { return z.err } -// Calling Close does not close the wrapped io.Writer originally passed to NewWriter. +// Close closes the Writer, flushing any unwritten data to the underlying +// io.Writer, but does not close the underlying io.Writer. func (z *Writer) Close() error { if !z.wroteHeader { z.err = z.writeHeader() -- cgit v1.1