summaryrefslogtreecommitdiff
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
commitae337f94d99f335a509eae76f9fac435ee4fa3d4 (patch)
tree3f0388ffaa746650e8c56a4dff81b3dd6dae8960
parentcde2c7763934e3959fedfb03ccf1295e87aca72c (diff)
downloadgolang-ae337f94d99f335a509eae76f9fac435ee4fa3d4.tar.gz
http: fix erroneous comment
R=r CC=golang-dev http://codereview.appspot.com/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 27fbc3902..c01b2dd26 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.