Remove whitespace between enum variants
We don't tend to put whitespace between enum variants.
This commit is contained in:
parent
3a73a480c8
commit
d595f421c6
|
@ -15,10 +15,8 @@ use super::INPUT_STRING_LEN_LIMIT;
|
||||||
pub enum ParseError {
|
pub enum ParseError {
|
||||||
/// Invalid amount.
|
/// Invalid amount.
|
||||||
Amount(ParseAmountError),
|
Amount(ParseAmountError),
|
||||||
|
|
||||||
/// Invalid denomination.
|
/// Invalid denomination.
|
||||||
Denomination(ParseDenominationError),
|
Denomination(ParseDenominationError),
|
||||||
|
|
||||||
/// The denomination was not identified.
|
/// The denomination was not identified.
|
||||||
MissingDenomination(MissingDenominationError),
|
MissingDenomination(MissingDenominationError),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue