mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
fix: cargo fmt
This commit is contained in:
parent
43674efb32
commit
c4ab5a02eb
3 changed files with 6 additions and 8 deletions
|
@ -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)),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue