summaryrefslogtreecommitdiff
path: root/src/pkg/net/http/header.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/net/http/header.go')
-rw-r--r--src/pkg/net/http/header.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/net/http/header.go b/src/pkg/net/http/header.go
index 6374237fb..ca1ae07c2 100644
--- a/src/pkg/net/http/header.go
+++ b/src/pkg/net/http/header.go
@@ -173,7 +173,7 @@ func (h Header) WriteSubset(w io.Writer, exclude map[string]bool) error {
// canonical key for "accept-encoding" is "Accept-Encoding".
func CanonicalHeaderKey(s string) string { return textproto.CanonicalMIMEHeaderKey(s) }
-// hasToken returns whether token appears with v, ASCII
+// hasToken reports whether token appears with v, ASCII
// case-insensitive, with space or comma boundaries.
// token must be all lowercase.
// v may contain mixed cased.