Commit 23227f3d authored by Gustav Paul's avatar Gustav Paul Committed by Adam Langley

exp/ssh: fix misleading spelling mistake in comment

R=dave, agl, rsc, golang-dev
CC=golang-dev
https://golang.org/cl/5431089
parent a6208656
...@@ -384,7 +384,7 @@ func (c *chanlist) remove(id uint32) { ...@@ -384,7 +384,7 @@ func (c *chanlist) remove(id uint32) {
// A chanWriter represents the stdin of a remote process. // A chanWriter represents the stdin of a remote process.
type chanWriter struct { type chanWriter struct {
win chan int // receives window adjustments win chan int // receives window adjustments
peersId uint32 // the peers id peersId uint32 // the peer's id
rwin int // current rwin size rwin int // current rwin size
packetWriter // for sending channelDataMsg packetWriter // for sending channelDataMsg
} }
...@@ -422,7 +422,7 @@ type chanReader struct { ...@@ -422,7 +422,7 @@ type chanReader struct {
// If writes to this channel block, they will block mainLoop, making // If writes to this channel block, they will block mainLoop, making
// it unable to receive new messages from the remote side. // it unable to receive new messages from the remote side.
data chan []byte // receives data from remote data chan []byte // receives data from remote
peersId uint32 // the peers id peersId uint32 // the peer's id
packetWriter // for sending windowAdjustMsg packetWriter // for sending windowAdjustMsg
buf []byte buf []byte
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment