From 2f8bb1d30d9d69c8e0c3714da5a9917125a87769 Mon Sep 17 00:00:00 2001 From: genofire Date: Wed, 13 Nov 2019 16:51:20 +0100 Subject: [PATCH] doc: fix typo in gzip.go (#92) * doc: fix typo in gzip.go * using the proper tense thanks for finding this! --- gzip.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gzip.go b/gzip.go index c112bbd..957fc92 100644 --- a/gzip.go +++ b/gzip.go @@ -81,7 +81,7 @@ type GzipResponseWriter struct { code int // Saves the WriteHeader value. - minSize int // Specifed the minimum response size to gzip. If the response length is bigger than this value, it is compressed. + minSize int // Specifies the minimum response size to gzip. If the response length is bigger than this value, it is compressed. buf []byte // Holds the first part of the write before reaching the minSize or the end of the write. ignore bool // If true, then we immediately passthru writes to the underlying ResponseWriter.