Update dependencies

This commit is contained in:
Ingo Oppermann
2024-04-15 16:22:39 +02:00
parent 28d9ae78c7
commit e35c3dead3
209 changed files with 23214 additions and 17689 deletions

View File

@@ -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])