Commit 8334d107 authored by Andrew Gerrand's avatar Andrew Gerrand

http: fix erroneous comment

R=r
CC=golang-dev
https://golang.org/cl/1539042
parent f81abb9d
...@@ -70,16 +70,16 @@ type Request struct { ...@@ -70,16 +70,16 @@ type Request struct {
// A header mapping request lines to their values. // A header mapping request lines to their values.
// If the header says // If the header says
// //
// Accept-Language: en-us
// accept-encoding: gzip, deflate // accept-encoding: gzip, deflate
// Accept-Language: en-us
// Connection: keep-alive // Connection: keep-alive
// //
// then // then
// //
// Header = map[string]string{ // Header = map[string]string{
// "Accept-Encoding": "en-us", // "Accept-Encoding": "gzip, deflate",
// "Accept-Language": "gzip, deflate", // "Accept-Language": "en-us",
// "Connection": "keep-alive" // "Connection": "keep-alive",
// } // }
// //
// HTTP defines that header names are case-insensitive. // HTTP defines that header names are case-insensitive.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment