From: Dominik Honnef Date: Sun, 8 Sep 2013 23:37:05 +0000 (+1000) Subject: compress/flate: small documentation fix X-Git-Tag: go1.2rc2~313 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a789ae9e8eb676928bfb0f0cd19ecd19923bfbf7;p=gostls13.git compress/flate: small documentation fix R=golang-dev, adg CC=bradfitz, golang-dev, remyoudompheng https://golang.org/cl/13568045 --- diff --git a/src/pkg/compress/flate/deflate.go b/src/pkg/compress/flate/deflate.go index b3e079150a..8c79df0c60 100644 --- a/src/pkg/compress/flate/deflate.go +++ b/src/pkg/compress/flate/deflate.go @@ -553,7 +553,7 @@ func (w *Writer) Close() error { } // Reset discards the writer's state and makes it equivalent to -// the result of NewWriter or NewWriterDict called with w +// the result of NewWriter or NewWriterDict called with dst // and w's level and dictionary. func (w *Writer) Reset(dst io.Writer) { if dw, ok := w.d.w.w.(*dictWriter); ok {