summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/xtea/block.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/xtea/block.go')
-rw-r--r--src/pkg/crypto/xtea/block.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/crypto/xtea/block.go b/src/pkg/crypto/xtea/block.go
index 3ac36d038..bf5d24599 100644
--- a/src/pkg/crypto/xtea/block.go
+++ b/src/pkg/crypto/xtea/block.go
@@ -22,7 +22,7 @@ func blockToUint32(src []byte) (uint32, uint32) {
return r0, r1
}
-// uint32ToBlock writes two unint32s into an 8 byte data block.
+// uint32ToBlock writes two uint32s into an 8 byte data block.
// Values are written as big endian.
func uint32ToBlock(v0, v1 uint32, dst []byte) {
dst[0] = byte(v0 >> 24)