typo in error message

This commit is contained in:
Andrea Franz 2019-04-18 01:40:26 +02:00
parent 448e4918b8
commit f383a0d583
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ type ErrInvalidLifeCycleValue struct {
}
func (e *ErrInvalidLifeCycleValue) Error() string {
return fmt.Sprintf("life cycle value must be 1 byte. got %d byte: %x", len(e.lc), e.lc)
return fmt.Sprintf("life cycle value must be 1 byte. got %d bytes: %x", len(e.lc), e.lc)
}
type CardStatus struct {