Skip to content

Commit

Permalink
all: fix some comments
Browse files Browse the repository at this point in the history
Change-Id: Ia0410f1f3bb0a9ee68c6dbe1e6f62f65f9e00955
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/477755
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Roland Shoemaker <roland@golang.org>
Auto-Submit: Roland Shoemaker <roland@golang.org>
Run-TryBot: shuang cui <imcusg@gmail.com>
Run-TryBot: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
  • Loading branch information
cuishuang authored and gopherbot committed Mar 20, 2023
1 parent 9cd0187 commit 018c28f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openpgp/packet/compressed.go
Expand Up @@ -60,7 +60,7 @@ func (c *Compressed) parse(r io.Reader) error {
return err
}

// compressedWriterCloser represents the serialized compression stream
// compressedWriteCloser represents the serialized compression stream
// header and the compressor. Its Close() method ensures that both the
// compressor and serialized stream header are closed. Its Write()
// method writes to the compressor.
Expand Down
2 changes: 1 addition & 1 deletion ssh/agent/server.go
Expand Up @@ -20,7 +20,7 @@ import (
"golang.org/x/crypto/ssh"
)

// Server wraps an Agent and uses it to implement the agent side of
// server wraps an Agent and uses it to implement the agent side of
// the SSH-agent, wire protocol.
type server struct {
agent Agent
Expand Down
2 changes: 1 addition & 1 deletion ssh/connection.go
Expand Up @@ -97,7 +97,7 @@ func (c *connection) Close() error {
return c.sshConn.conn.Close()
}

// sshconn provides net.Conn metadata, but disallows direct reads and
// sshConn provides net.Conn metadata, but disallows direct reads and
// writes.
type sshConn struct {
conn net.Conn
Expand Down

0 comments on commit 018c28f

Please sign in to comment.