aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/exp/ssh
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-11-01 22:58:09 -0400
committerRuss Cox <rsc@golang.org>2011-11-01 22:58:09 -0400
commit492098eb759bba2ff5c86b0a868158afe32e91f8 (patch)
treefbfa37b0cb08d9143f044d7eb6205352c981bd39 /src/pkg/exp/ssh
parentabd32609900775043a46a6c97367d079a5597c0a (diff)
downloadgo-492098eb759bba2ff5c86b0a868158afe32e91f8.tar.xz
all: rename os.Error to error in various non-code contexts
R=adg CC=golang-dev https://golang.org/cl/5328062
Diffstat (limited to 'src/pkg/exp/ssh')
-rw-r--r--src/pkg/exp/ssh/channel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exp/ssh/channel.go b/src/pkg/exp/ssh/channel.go
index 428e71c806..6ff8203ce2 100644
--- a/src/pkg/exp/ssh/channel.go
+++ b/src/pkg/exp/ssh/channel.go
@@ -20,7 +20,7 @@ type Channel interface {
// peer is likely to signal a protocol error and drop the connection.
Reject(reason RejectionReason, message string) error
- // Read may return a ChannelRequest as an os.Error.
+ // Read may return a ChannelRequest as an error.
Read(data []byte) (int, error)
Write(data []byte) (int, error)
Close() error