aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-06-06 17:18:09 +0200
committerAndrew Gerrand <adg@golang.org>2010-06-06 17:18:09 +0200
commit8334d107c4b95f1a241b8b49234eff02cd893683 (patch)
treef74c0ff803ce557de3cb37809968d7496e57d5cd
parentf81abb9dd84f6ad21c4eaf9908779a7ea2d10b26 (diff)
downloadgo-8334d107c4b95f1a241b8b49234eff02cd893683.tar.gz
go-8334d107c4b95f1a241b8b49234eff02cd893683.zip
http: fix erroneous comment
R=r CC=golang-dev https://golang.org/cl/1539042
-rw-r--r--src/pkg/http/request.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/http/request.go b/src/pkg/http/request.go
index 27fbc3902a..c01b2dd26e 100644
--- a/src/pkg/http/request.go
+++ b/src/pkg/http/request.go
@@ -70,16 +70,16 @@ type Request struct {
// A header mapping request lines to their values.
// If the header says
//
- // Accept-Language: en-us
// accept-encoding: gzip, deflate
+ // Accept-Language: en-us
// Connection: keep-alive
//
// then
//
// Header = map[string]string{
- // "Accept-Encoding": "en-us",
- // "Accept-Language": "gzip, deflate",
- // "Connection": "keep-alive"
+ // "Accept-Encoding": "gzip, deflate",
+ // "Accept-Language": "en-us",
+ // "Connection": "keep-alive",
// }
//
// HTTP defines that header names are case-insensitive.