From dfc7304d3289645317c3eef3ea5819e9551a0faa Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 9 Oct 2012 11:16:35 -0700 Subject: [PATCH] net/http: fix name of result parameter in a comment R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/6632053 --- src/pkg/net/http/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.48.1