aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/http/chunked.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/http/chunked.go')
-rw-r--r--src/pkg/http/chunked.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/http/chunked.go b/src/pkg/http/chunked.go
index 66195f06b9..bfd68a4408 100644
--- a/src/pkg/http/chunked.go
+++ b/src/pkg/http/chunked.go
@@ -18,7 +18,7 @@ func NewChunkedWriter(w io.Writer) io.WriteCloser {
}
// Writing to ChunkedWriter translates to writing in HTTP chunked Transfer
-// Encoding wire format to the undering Wire writer.
+// Encoding wire format to the underlying Wire writer.
type chunkedWriter struct {
Wire io.Writer
}