1
0
mirror of https://github.com/golang/go synced 2024-11-26 07:57:57 -07:00

net/http: fix name of result parameter in a comment

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/6632053
This commit is contained in:
Brad Fitzpatrick 2012-10-09 11:16:35 -07:00
parent 24ab448c69
commit dfc7304d32

View File

@ -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.