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;