From f39ecd2beb7a9b9c75e6b998e5d834e7b2d1c02f Mon Sep 17 00:00:00 2001 From: linuxgcc Date: Tue, 21 Nov 2023 02:25:07 +0000 Subject: [PATCH] Update crypto.go, fix incorrect spelling Signed-off-by: linuxgcc --- crypto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto.go b/crypto.go index 9a73e263..13ee66f1 100644 --- a/crypto.go +++ b/crypto.go @@ -84,7 +84,7 @@ func parseCrypto(r io.Reader) ([]Crypto, error) { kv := strings.Split(text, ":") if len(kv) != 2 { - return nil, fmt.Errorf("%w: Cannot parae line: %q", ErrFileParse, text) + return nil, fmt.Errorf("%w: Cannot parse line: %q", ErrFileParse, text) } k := strings.TrimSpace(kv[0])