From: Russ Cox Date: Mon, 23 Nov 2009 22:22:56 +0000 (-0800) Subject: io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter) X-Git-Tag: weekly.2009-12-07~157 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b90f67329031127a6cb0796022ff4d81054406db;p=gostls13.git io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter) R=r CC=eds https://golang.org/cl/160045 --- diff --git a/src/pkg/io/io.go b/src/pkg/io/io.go index b2a051596a..b389af45a4 100644 --- a/src/pkg/io/io.go +++ b/src/pkg/io/io.go @@ -69,7 +69,7 @@ type Seeker interface { Seek(offset int64, whence int) (ret int64, err os.Error); } -// ReadWrite is the interface that groups the basic Read and Write methods. +// ReadWriter is the interface that groups the basic Read and Write methods. type ReadWriter interface { Reader; Writer;