From: Andrew Gerrand Date: Sun, 6 Jun 2010 15:18:09 +0000 (+0200) Subject: http: fix erroneous comment X-Git-Tag: weekly.2010-06-09~19 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8334d107c4b95f1a241b8b49234eff02cd893683;p=gostls13.git http: fix erroneous comment R=r CC=golang-dev https://golang.org/cl/1539042 --- 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.