1
0
mirror of https://github.com/golang/go synced 2024-09-24 05:20:13 -06:00

io: fix spelling in documentation for io.Discard

In the process of refactoring ioutil.Discard to io.Discard in
CL 263141 "an" should have been changed to "a" but was likely
missed in the process.

This commit corrects the spelling of the documentation.

Change-Id: I0609c45878291f8f01560efc3f3e6fba191e095b
GitHub-Last-Rev: e3257ca272
GitHub-Pull-Request: golang/go#45190
Reviewed-on: https://go-review.googlesource.com/c/go/+/304209
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
Trust: Robert Griesemer <gri@golang.org>
This commit is contained in:
Simão Gomes Viana 2021-03-23 21:50:41 +00:00 committed by Ian Lance Taylor
parent 2887ef499a
commit dc289d3dcb

View File

@ -566,7 +566,7 @@ func (t *teeReader) Read(p []byte) (n int, err error) {
return
}
// Discard is an Writer on which all Write calls succeed
// Discard is a Writer on which all Write calls succeed
// without doing anything.
var Discard Writer = discard{}