]> Cypherpunks repositories - gostls13.git/commitdiff
io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter)
authorRuss Cox <rsc@golang.org>
Mon, 23 Nov 2009 22:22:56 +0000 (14:22 -0800)
committerRuss Cox <rsc@golang.org>
Mon, 23 Nov 2009 22:22:56 +0000 (14:22 -0800)
R=r
CC=eds
https://golang.org/cl/160045

src/pkg/io/io.go

index b2a051596a497cea5f9706e592622992277001b1..b389af45a4d626a36b9bc47f9150bd0b1b3ef1b9 100644 (file)
@@ -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;