fix: cargo fmt

This commit is contained in:
Drake 2022-05-14 15:46:57 -06:00
parent 43674efb32
commit c4ab5a02eb
No known key found for this signature in database
GPG key ID: C905B72008514EBC
3 changed files with 6 additions and 8 deletions

View file

@ -113,7 +113,7 @@ pub fn finish_parsing_num(raw: &str) -> Result<(&str, ParsedNumResult), (&str, I
let (_, raw_without_suffix) = parse_literal_suffix(raw);
match from_str_radix(raw.replace('_', "").as_str(), radix) {
Ok(result) => Ok((raw_without_suffix, result)),
Err(e) => Err((raw, e))
Err(e) => Err((raw, e)),
}
}