File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ func (c *Compressed) parse(r io.Reader) error {
60
60
return err
61
61
}
62
62
63
- // compressedWriterCloser represents the serialized compression stream
63
+ // compressedWriteCloser represents the serialized compression stream
64
64
// header and the compressor. Its Close() method ensures that both the
65
65
// compressor and serialized stream header are closed. Its Write()
66
66
// method writes to the compressor.
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
20
20
"golang.org/x/crypto/ssh"
21
21
)
22
22
23
- // Server wraps an Agent and uses it to implement the agent side of
23
+ // server wraps an Agent and uses it to implement the agent side of
24
24
// the SSH-agent, wire protocol.
25
25
type server struct {
26
26
agent Agent
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ func (c *connection) Close() error {
97
97
return c .sshConn .conn .Close ()
98
98
}
99
99
100
- // sshconn provides net.Conn metadata, but disallows direct reads and
100
+ // sshConn provides net.Conn metadata, but disallows direct reads and
101
101
// writes.
102
102
type sshConn struct {
103
103
conn net.Conn
You can’t perform that action at this time.
0 commit comments