diff options
-rw-r--r-- | src/pkg/io/io.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/io/io.go b/src/pkg/io/io.go index b2a051596..b389af45a 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; |