Skip to content

Commit a769d52

Browse files
howjmayianlancetaylor
authored andcommitted
sha3: fix typo in comment
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>
1 parent 5ff15b2 commit a769d52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: sha3/xor_generic.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func xorInGeneric(d *state, buf []byte) {
1919
}
2020
}
2121

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

0 commit comments

Comments
 (0)