Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(246)

Unified Diff: ssh/channel.go

Issue 14430055: code review 14430055: go.crypto/ssh: cosmetic only spelling fixes (Closed)
Patch Set: diff -r 812c06b5a384 https://code.google.com/p/go.crypto Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ssh/client.go » ('j') | ssh/server.go » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ssh/channel.go
===================================================================
--- a/ssh/channel.go
+++ b/ssh/channel.go
@@ -49,7 +49,7 @@
// ChannelType returns the type of the channel, as supplied by the
// client.
ChannelType() string
- // ExtraData returns the arbitary payload for this channel, as supplied
+ // ExtraData returns the arbitrary payload for this channel, as supplied
// by the client. This data is specific to the channel type.
ExtraData() []byte
}
@@ -516,7 +516,7 @@
return
}
// never send more data than maxPacket even if
- // there is sufficent window.
+ // there is sufficient window.
n := min(w.maxPacket-headerLength, len(data))
r := w.remoteWin.reserve(n)
n = r
« no previous file with comments | « no previous file | ssh/client.go » ('j') | ssh/server.go » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b