Name change to improve embeddability:

io.Read->io.Reader
	io.Write,Close,etc.->io.Writer,Closer etc.

R=rsc
DELTA=190  (0 added, 0 deleted, 190 changed)
OCL=28525
CL=28535
This commit is contained in:
Rob Pike 2009-05-08 11:22:57 -07:00
parent df46b3342c
commit c8b47c6fce
20 changed files with 121 additions and 121 deletions

View file

@ -11,7 +11,7 @@ import (
"testing";
)
func runEcho(fd io.ReadWrite, done chan<- int) {
func runEcho(fd io.ReadWriter, done chan<- int) {
var buf [1024]byte;
for {