From 0116d2c5a5e15d7a9e35eadb7ecc7f3fad55201b Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Tue, 17 Nov 2020 21:17:08 -0500 Subject: lib: update MkState docstring --- lib/aes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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{} -- cgit v1.2.3