aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/http/doc.go')
-rw-r--r--src/net/http/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/doc.go b/src/net/http/doc.go
index 7855feaaa9..ae9b708c69 100644
--- a/src/net/http/doc.go
+++ b/src/net/http/doc.go
@@ -21,7 +21,7 @@ The client must close the response body when finished with it:
// handle error
}
defer resp.Body.Close()
- body, err := ioutil.ReadAll(resp.Body)
+ body, err := io.ReadAll(resp.Body)
// ...
For control over HTTP client headers, redirect policy, and other