Hello r (cc: golang-dev@googlegroups.com), I'd like you to review this change.
LGTM On Jun 6, 2010, at 7:59 AM, adg@golang.org wrote: > Reviewers: r, > > Message: > Hello r (cc: golang-dev@googlegroups.com), > > I'd like you to review this change. > > > Description: > http: fix erroneous comment > > Please review this at http://codereview.appspot.com/1539042/show > > Affected files: > M src/pkg/http/request.go > > > Index: src/pkg/http/request.go > =================================================================== > --- a/src/pkg/http/request.go > +++ b/src/pkg/http/request.go > @@ -70,16 +70,16 @@ > // A header mapping request lines to their values. > // If the header says > // > + // accept-encoding: gzip, deflate > // Accept-Language: en-us > - // accept-encoding: gzip, deflate > // 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. > >
*** Submitted as http://code.google.com/p/go/source/detail?r=443fb42ed60e *** http: fix erroneous comment R=r CC=golang-dev http://codereview.appspot.com/1539042