1
0
mirror of https://github.com/golang/go synced 2024-11-20 11:04:56 -07:00

net/http/httputil: fix typo in comment.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6272050
This commit is contained in:
Rob Pike 2012-06-04 18:37:31 -07:00
parent 7ab62b0bac
commit 2176869e4e

View 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