Skip to content

Commit

Permalink
all: fix typos
Browse files Browse the repository at this point in the history
Change-Id: I62cbcfcd0be5f6a74d93b85b24ff7607533bb239
GitHub-Last-Rev: 9967869
GitHub-Pull-Request: #64
Reviewed-on: https://go-review.googlesource.com/c/145240
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
  • Loading branch information
igorzhilianin authored and bradfitz committed Oct 29, 2018
1 parent e84da03 commit 45a5f77
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion blake2b/blake2x.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type XOF interface {
}

// OutputLengthUnknown can be used as the size argument to NewXOF to indicate
// the the length of the output is not known in advance.
// the length of the output is not known in advance.
const OutputLengthUnknown = 0

// magicUnknownOutputLength is a magic value for the output size that indicates
Expand Down
2 changes: 1 addition & 1 deletion blake2s/blake2x.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type XOF interface {
}

// OutputLengthUnknown can be used as the size argument to NewXOF to indicate
// the the length of the output is not known in advance.
// the length of the output is not known in advance.
const OutputLengthUnknown = 0

// magicUnknownOutputLength is a magic value for the output size that indicates
Expand Down
2 changes: 1 addition & 1 deletion cryptobyte/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func NewFixedBuilder(buffer []byte) *Builder {
}

// Bytes returns the bytes written by the builder or an error if one has
// occurred during during building.
// occurred during building.
func (b *Builder) Bytes() ([]byte, error) {
if b.err != nil {
return nil, b.err
Expand Down
2 changes: 1 addition & 1 deletion ocsp/ocsp.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (r ResponseStatus) String() string {
}

// ResponseError is an error that may be returned by ParseResponse to indicate
// that the response itself is an error, not just that its indicating that a
// that the response itself is an error, not just that it's indicating that a
// certificate is revoked, unknown, etc.
type ResponseError struct {
Status ResponseStatus
Expand Down
2 changes: 1 addition & 1 deletion openpgp/packet/userattribute.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (uat *UserAttribute) Serialize(w io.Writer) (err error) {

// ImageData returns zero or more byte slices, each containing
// JPEG File Interchange Format (JFIF), for each photo in the
// the user attribute packet.
// user attribute packet.
func (uat *UserAttribute) ImageData() (imageData [][]byte) {
for _, sp := range uat.Contents {
if sp.SubType == UserAttrImageSubpacket && len(sp.Contents) > 16 {
Expand Down
2 changes: 1 addition & 1 deletion ripemd160/ripemd160.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Package ripemd160 implements the RIPEMD-160 hash algorithm.
package ripemd160 // import "golang.org/x/crypto/ripemd160"

// RIPEMD-160 is designed by by Hans Dobbertin, Antoon Bosselaers, and Bart
// RIPEMD-160 is designed by Hans Dobbertin, Antoon Bosselaers, and Bart
// Preneel with specifications available at:
// http://homes.esat.kuleuven.be/~cosicart/pdf/AB-9601/AB-9601.pdf.

Expand Down
2 changes: 1 addition & 1 deletion scrypt/scrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func blockXOR(dst, src []uint32, n int) {
}

// salsaXOR applies Salsa20/8 to the XOR of 16 numbers from tmp and in,
// and puts the result into both both tmp and out.
// and puts the result into both tmp and out.
func salsaXOR(tmp *[16]uint32, in, out []uint32) {
w0 := tmp[0] ^ in[0]
w1 := tmp[1] ^ in[1]
Expand Down
2 changes: 1 addition & 1 deletion sha3/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
// is then "full" and the permutation is applied to "empty" it. This process is
// repeated until all the input has been "absorbed". The input is then padded.
// The digest is "squeezed" from the sponge in the same way, except that output
// output is copied out instead of input being XORed in.
// is copied out instead of input being XORed in.
//
// A sponge is parameterized by its generic security strength, which is equal
// to half its capacity; capacity + rate is equal to the permutation's width.
Expand Down
2 changes: 1 addition & 1 deletion ssh/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func Dial(network, addr string, config *ClientConfig) (*Client, error) {
// keys. A HostKeyCallback must return nil if the host key is OK, or
// an error to reject it. It receives the hostname as passed to Dial
// or NewClientConn. The remote address is the RemoteAddr of the
// net.Conn underlying the the SSH connection.
// net.Conn underlying the SSH connection.
type HostKeyCallback func(hostname string, remote net.Addr, key PublicKey) error

// BannerCallback is the function type used for treat the banner sent by
Expand Down
2 changes: 1 addition & 1 deletion ssh/mux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func muxPair() (*mux, *mux) {
return s, c
}

// Returns both ends of a channel, and the mux for the the 2nd
// Returns both ends of a channel, and the mux for the 2nd
// channel.
func channelPair(t *testing.T) (*channel, *channel, *mux) {
c, s := muxPair()
Expand Down

0 comments on commit 45a5f77

Please sign in to comment.