From 10f55215a4d4ac643bf04202704b4fec01417bba Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 2 Mar 2010 13:46:51 -0800 Subject: gofmt: experiment: align values in map composites where possible - gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076 --- src/pkg/http/request.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/pkg/http/request.go') diff --git a/src/pkg/http/request.go b/src/pkg/http/request.go index 9f18acb3b..82701adc6 100644 --- a/src/pkg/http/request.go +++ b/src/pkg/http/request.go @@ -50,12 +50,12 @@ type badStringError struct { func (e *badStringError) String() string { return fmt.Sprintf("%s %q", e.what, e.str) } var reqExcludeHeader = map[string]int{ - "Host": 0, - "User-Agent": 0, - "Referer": 0, - "Content-Length": 0, + "Host": 0, + "User-Agent": 0, + "Referer": 0, + "Content-Length": 0, "Transfer-Encoding": 0, - "Trailer": 0, + "Trailer": 0, } // A Request represents a parsed HTTP request header. -- cgit v1.2.3