From: Robert Griesemer Date: Fri, 30 Oct 2020 00:09:16 +0000 (-0700) Subject: strings: complete Reader doc string X-Git-Tag: go1.16beta1~402 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=faa44268116df045813e36c9b57d7309b74f14f6;p=gostls13.git strings: complete Reader doc string Follow-up on https://golang.org/cl/247523. Change-Id: I9e91a6d77271e640d84851f2e2a4c6d2150a2b43 Reviewed-on: https://go-review.googlesource.com/c/go/+/266438 Trust: Robert Griesemer Reviewed-by: Ian Lance Taylor --- diff --git a/src/strings/reader.go b/src/strings/reader.go index e03f3c5cf8..6f069a62ca 100644 --- a/src/strings/reader.go +++ b/src/strings/reader.go @@ -10,8 +10,8 @@ import ( "unicode/utf8" ) -// A Reader implements the io.Reader, io.ReaderAt, io.Seeker, io.WriterTo, -// io.ByteScanner, and io.RuneScanner interfaces by reading +// A Reader implements the io.Reader, io.ReaderAt, io.ByteReader, io.ByteScanner, +// io.RuneReader, io.RuneScanner, io.Seeker, and io.WriterTo interfaces by reading // from a string. // The zero value for Reader operates like a Reader of an empty string. type Reader struct {