From 2176869e4e5219aecd6a862d14f5092e701c3e2b Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 4 Jun 2012 18:37:31 -0700 Subject: [PATCH] net/http/httputil: fix typo in comment. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6272050 --- src/pkg/net/http/httputil/dump.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.48.1