Fix typo in error message for internal.Unarmor()
This commit is contained in:
parent
51496c37e2
commit
52f4749d87
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ func Unarmor(input string) (*armor.Block, error) {
|
||||||
io := strings.NewReader(input)
|
io := strings.NewReader(input)
|
||||||
b, err := armor.Decode(io)
|
b, err := armor.Decode(io)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "gopenpgp: unable to armor")
|
return nil, errors.Wrap(err, "gopenpgp: unable to unarmor")
|
||||||
}
|
}
|
||||||
return b, nil
|
return b, nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue