From: Rob Pike Date: Tue, 5 Jun 2012 01:37:31 +0000 (-0700) Subject: net/http/httputil: fix typo in comment. X-Git-Tag: go1.1rc2~2993 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2176869e4e5219aecd6a862d14f5092e701c3e2b;p=gostls13.git net/http/httputil: fix typo in comment. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6272050 --- diff --git a/src/pkg/net/http/httputil/dump.go b/src/pkg/net/http/httputil/dump.go index 892ef4eded..5a95eb8cc2 100644 --- a/src/pkg/net/http/httputil/dump.go +++ b/src/pkg/net/http/httputil/dump.go @@ -75,7 +75,7 @@ func DumpRequestOut(req *http.Request, body bool) ([]byte, error) { // Use the actual Transport code to record what we would send // on the wire, but not using TCP. Use a Transport with a - // customer dialer that returns a fake net.Conn that waits + // custom dialer that returns a fake net.Conn that waits // for the full input (and recording it), and then responds // with a dummy response. var buf bytes.Buffer // records the output