mirror of
https://github.com/golang/go
synced 2024-11-21 15:04:44 -07:00
http: fix erroneous comment
R=r CC=golang-dev https://golang.org/cl/1539042
This commit is contained in:
parent
f81abb9dd8
commit
8334d107c4
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user