Skip to content

Commit 34bf09a

Browse files
committed
sha3: Fix the typo ulint64
1 parent 5ff15b2 commit 34bf09a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sha3/xor_generic.go

Lines changed: 1 addition & 1 deletion
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)