summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/aes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/aes.go b/lib/aes.go
index cfc06ff..a4c8ec2 100644
--- a/lib/aes.go
+++ b/lib/aes.go
@@ -3,7 +3,7 @@
package lib
-// Make and return initial state array from 16-byte input 'in'
+// Makes and returns initial the state array from 16-byte input 'in'.
func MkState(in []byte) [][]byte {
if len(in) != 16 {
return [][]byte{}