commit | b90f67329031127a6cb0796022ff4d81054406db | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Mon Nov 23 14:22:56 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Mon Nov 23 14:22:56 2009 -0800 |
tree | 8ea7a0d5d97f85f8fd45dd9d4a576fa4cd32ef15 | |
parent | 3b7f552fbb5e762bb84f2466da16faa7f312145c [diff] [blame] |
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 b2a0515..b389af4 100644 --- a/src/pkg/io/io.go +++ b/src/pkg/io/io.go
@@ -69,7 +69,7 @@ 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;