mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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:
parent
df46b3342c
commit
c8b47c6fce
20 changed files with 121 additions and 121 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue