Skip to content

Commit

Permalink
sha3: fix typo in comment
Browse files Browse the repository at this point in the history
Change-Id: I2cd8fe55a3918771744ca6b53b8335282b7d2b40
GitHub-Last-Rev: 34bf09adb28954bbaa9db081379b3ff869fe7f28
GitHub-Pull-Request: golang/crypto#189
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/333429
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Keith Randall <khr@golang.org>
  • Loading branch information
howjmay authored and ianlancetaylor committed Jul 11, 2021
1 parent a187c91 commit 00aae65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sha3/xor_generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func xorInGeneric(d *state, buf []byte) {
}
}

// copyOutGeneric copies ulint64s to a byte buffer.
// copyOutGeneric copies uint64s to a byte buffer.
func copyOutGeneric(d *state, b []byte) {
for i := 0; len(b) >= 8; i++ {
binary.LittleEndian.PutUint64(b, d.a[i])
Expand Down

0 comments on commit 00aae65

Please sign in to comment.