]> Cypherpunks repositories - gostls13.git/commitdiff
net/http/httputil: fix typo in comment.
authorRob Pike <r@golang.org>
Tue, 5 Jun 2012 01:37:31 +0000 (18:37 -0700)
committerRob Pike <r@golang.org>
Tue, 5 Jun 2012 01:37:31 +0000 (18:37 -0700)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6272050

src/pkg/net/http/httputil/dump.go

index 892ef4eded0c1cf56818d99201464312d984c452..5a95eb8cc25a866343e68d7a07bb659e31a826fa 100644 (file)
@@ -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