Skip to content

Commit

Permalink
fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dannasman committed Jul 20, 2024
1 parent a6f3aac commit 746b24f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions literal/src/float.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub fn parse_str(literal: &str) -> Option<f64> {
parse_inner(literal.trim().as_bytes())
}

fn strip_underlines(literal: &[u8]) -> Option<Vec<u8>>{
fn strip_underlines(literal: &[u8]) -> Option<Vec<u8>> {
let mut prev = b'\0';
let mut dup = Vec::<u8>::new();
for p in literal {
Expand Down Expand Up @@ -59,7 +59,7 @@ fn parse_inner(literal: &[u8]) -> Option<f64> {
// Use custom function for underline handling for now.
// For further information see https://github.com/Alexhuszagh/rust-lexical/issues/96.
let stripped = strip_underlines(literal)?;

// lexical-core's format::PYTHON_STRING is inaccurate
const PYTHON_STRING: u128 = NumberFormatBuilder::rebuild(PYTHON3_LITERAL)
.no_special(false)
Expand Down

0 comments on commit 746b24f

Please sign in to comment.