From: Brad Fitzpatrick Date: Tue, 9 Oct 2012 18:16:35 +0000 (-0700) Subject: net/http: fix name of result parameter in a comment X-Git-Tag: go1.1rc2~2174 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=dfc7304d3289645317c3eef3ea5819e9551a0faa;p=gostls13.git net/http: fix name of result parameter in a comment R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/6632053 --- diff --git a/src/pkg/net/http/client.go b/src/pkg/net/http/client.go index ad06fde035..02891db9ad 100644 --- a/src/pkg/net/http/client.go +++ b/src/pkg/net/http/client.go @@ -96,7 +96,7 @@ type readClose struct { // // When err is nil, resp always contains a non-nil resp.Body. // -// Callers should close res.Body when done reading from it. If +// Callers should close resp.Body when done reading from it. If // resp.Body is not closed, the Client's underlying RoundTripper // (typically Transport) may not be able to re-use a persistent TCP // connection to the server for a subsequent "keep-alive" request.