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

net/http: fix typo in Request.GetBody's doc string

Change-Id: I84043b6fe4b20a2514d47217e07e44f26bec52ab
Reviewed-on: https://go-review.googlesource.com/33973
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Chris Broadfoot 2016-12-05 17:28:51 -08:00 committed by Brad Fitzpatrick
parent 80acfe950f
commit 8016808562

View File

@ -171,7 +171,7 @@ type Request struct {
Body io.ReadCloser
// GetBody defines an optional func to return a new copy of
// Body. It used for client requests when a redirect requires
// Body. It is used for client requests when a redirect requires
// reading the body more than once. Use of GetBody still
// requires setting Body.
//