Skip to content

Commit

Permalink
Update crypto.go, fix incorrect spelling (#591)
Browse files Browse the repository at this point in the history
Signed-off-by: linuxgcc <linuxgcc@users.noreply.github.com>
  • Loading branch information
linuxgcc committed Nov 22, 2023
1 parent 6990574 commit f11f6e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit f11f6e4

Please sign in to comment.