aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Enshin <b1os@bk.ru>2019-12-30 06:42:57 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2020-01-06 16:25:11 +0000
commit2bf82070c397a994c62dff00045443d18b37d807 (patch)
tree522d0b760a89ee33ef19b491231e5c26cffd0d55
parent59af52b46224c65cf71b551cca89922747a86e61 (diff)
downloadgolang-id-tour-2bf82070c397a994c62dff00045443d18b37d807.tar.xz
content: use singular "interface" when discussing Reader
Change-Id: I830a3bf4cfffe96f90c68e725d3806114543f360 GitHub-Last-Rev: dcefcf469c789f262d8452f6a642aa31d235f172 GitHub-Pull-Request: golang/tour#878 Reviewed-on: https://go-review.googlesource.com/c/tour/+/212817 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--content/methods.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/methods.article b/content/methods.article
index ab1d40d..34aa673 100644
--- a/content/methods.article
+++ b/content/methods.article
@@ -343,7 +343,7 @@ Change your `Sqrt` function to return an `ErrNegativeSqrt` value when given a ne
The `io` package specifies the `io.Reader` interface,
which represents the read end of a stream of data.
-The Go standard library contains [[https://golang.org/search?q=Read#Global][many implementations]] of these interfaces, including files, network connections, compressors, ciphers, and others.
+The Go standard library contains [[https://golang.org/search?q=Read#Global][many implementations]] of this interface, including files, network connections, compressors, ciphers, and others.
The `io.Reader` interface has a `Read` method: