Commit b90f6732 authored by Russ Cox's avatar Russ Cox

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

R=r
CC=eds
https://golang.org/cl/160045
parent 3b7f552f
...@@ -69,7 +69,7 @@ type Seeker interface { ...@@ -69,7 +69,7 @@ type Seeker interface {
Seek(offset int64, whence int) (ret int64, err os.Error); 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 { type ReadWriter interface {
Reader; Reader;
Writer; Writer;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment