Improve documentation

This commit is contained in:
TwinProduction 2020-12-12 23:32:26 -05:00
parent 7f0b862822
commit 8cd82605dd

View File

@ -25,6 +25,7 @@ func (w *gzipResponseWriter) WriteHeader(status int) {
w.ResponseWriter.WriteHeader(status)
}
// Write writes len(b) bytes from b to the underlying data stream.
func (w *gzipResponseWriter) Write(b []byte) (int, error) {
return w.Writer.Write(b)
}