From 359c0d3152465c2d52e9e35fab98aa521c930238 Mon Sep 17 00:00:00 2001 From: Simon Waldherr Date: Mon, 13 Mar 2023 17:55:20 +0100 Subject: [PATCH] fix misspell --- internal/secret/secret.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/secret/secret.go b/internal/secret/secret.go index b2c5f2a5..2e9128e8 100644 --- a/internal/secret/secret.go +++ b/internal/secret/secret.go @@ -93,7 +93,7 @@ func DecodeAsUtf16(cipherText string, passwordEncryption string) []byte { } // EncryptionMethodsForUsage return the encryption methods for the current -// OS as comma seperated string for use in help text +// OS as comma separated string for use in help text func EncryptionMethodsForUsage() string { return strings.Join(encryptionMethods, ", ") }