From: Ian Lance Taylor Date: Thu, 31 May 2018 22:07:02 +0000 (-0700) Subject: archive/zip: remove unnecessary words in (*Writer).Close docs X-Git-Tag: go1.11beta1~238 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a7e0a920ad45482183783c56e4dd39c9457ff4cc;p=gostls13.git archive/zip: remove unnecessary words in (*Writer).Close docs Fixes #25599 Change-Id: I19ac3463682f662515feaf4c6132f55c12ba5386 Reviewed-on: https://go-review.googlesource.com/115618 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/archive/zip/writer.go b/src/archive/zip/writer.go index 0f1a193345..506148ee30 100644 --- a/src/archive/zip/writer.go +++ b/src/archive/zip/writer.go @@ -72,7 +72,7 @@ func (w *Writer) SetComment(comment string) error { } // Close finishes writing the zip file by writing the central directory. -// It does not (and cannot) close the underlying writer. +// It does not close the underlying writer. func (w *Writer) Close() error { if w.last != nil && !w.last.closed { if err := w.last.close(); err != nil {