1
0
mirror of https://github.com/golang/go synced 2024-11-12 07:00:21 -07:00

io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter)

R=r
CC=eds
https://golang.org/cl/160045
This commit is contained in:
Russ Cox 2009-11-23 14:22:56 -08:00
parent 3b7f552fbb
commit b90f673290

View 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;