We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0573588 commit d64fcb1Copy full SHA for d64fcb1
1 file changed
src/uu/sort/src/sort.rs
@@ -1808,9 +1808,11 @@ fn general_bd_parse(a: &str) -> GeneralBigDecimalParseResult {
1808
// Parse digits, and fold in recoverable errors
1809
let ebd = match ExtendedBigDecimal::extended_parse(a) {
1810
Err(ExtendedParserError::NotNumeric) => return GeneralBigDecimalParseResult::Invalid,
1811
- Err(ExtendedParserError::PartialMatch(ebd, _))
1812
- | Err(ExtendedParserError::Overflow(ebd))
1813
- | Err(ExtendedParserError::Underflow(ebd))
+ Err(
+ ExtendedParserError::PartialMatch(ebd, _)
+ | ExtendedParserError::Overflow(ebd)
1814
+ | ExtendedParserError::Underflow(ebd),
1815
+ )
1816
| Ok(ebd) => ebd,
1817
};
1818
0 commit comments