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>
diff --git a/sha3/xor_generic.go b/sha3/xor_generic.go
index fd35f02..8d94771 100644
--- a/sha3/xor_generic.go
+++ b/sha3/xor_generic.go
@@ -19,7 +19,7 @@
 	}
 }
 
-// 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])