From e61c2446dcd882ec7475c644911c46eac3313b9a Mon Sep 17 00:00:00 2001 From: Matthew McPherrin Date: Fri, 6 Jul 2018 10:56:49 -0700 Subject: [PATCH] Fix a tiny typo in a comment. --- jceks/jceks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jceks/jceks.go b/jceks/jceks.go index dd5f522..f289a83 100644 --- a/jceks/jceks.go +++ b/jceks/jceks.go @@ -211,7 +211,7 @@ func getPreKeyedHash(password []byte) hash.Hash { buf[i*2+1] = password[i] } md.Write(buf) - // Yes, "Mighty Aprhodite" is a constant used by this method. + // Yes, "Mighty Aphrodite" is a constant used by this method. md.Write([]byte("Mighty Aphrodite")) return md }