typo in error message
This commit is contained in:
parent
448e4918b8
commit
f383a0d583
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue