aboutsummaryrefslogtreecommitdiff
path: root/src/compress
diff options
context:
space:
mode:
authorKunpei Sakai <namusyaka@gmail.com>2017-09-15 10:24:47 +0900
committerRob Pike <r@golang.org>2017-09-15 02:39:16 +0000
commit5a986eca869773c4459b36dad434b97287d5d4f3 (patch)
treeeac8b3560d7aa621379b2aea6f2c6bcc3bb3715a /src/compress
parent33cb1481f26c6f1acca445fafa18e7ad1d49efed (diff)
downloadgo-5a986eca869773c4459b36dad434b97287d5d4f3.tar.gz
go-5a986eca869773c4459b36dad434b97287d5d4f3.zip
all: fix article typos
a -> an Change-Id: I7362bdc199e83073a712be657f5d9ba16df3077e Reviewed-on: https://go-review.googlesource.com/63850 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/compress')
-rw-r--r--src/compress/gzip/gunzip.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compress/gzip/gunzip.go b/src/compress/gzip/gunzip.go
index 8bd750bd8b..85d52e8500 100644
--- a/src/compress/gzip/gunzip.go
+++ b/src/compress/gzip/gunzip.go
@@ -66,7 +66,7 @@ type Header struct {
// Only the first header is recorded in the Reader fields.
//
// Gzip files store a length and checksum of the uncompressed data.
-// The Reader will return a ErrChecksum when Read
+// The Reader will return an ErrChecksum when Read
// reaches the end of the uncompressed data if it does not
// have the expected length or checksum. Clients should treat data
// returned by Read as tentative until they receive the io.EOF