Skip to content

Commit

Permalink
Fix typos and inconsistencies in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephTLyons committed Nov 8, 2024
1 parent a88e1a8 commit c009791
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub fn main() {
// Parse a more complex float with scientific notation
"-1_234.567_8e-2" |> lenient_parse.to_float |> io.debug
// -> Ok(-12.345678)
// Ok(-12.345678)
// --- Integer parsing
Expand All @@ -40,7 +40,7 @@ pub fn main() {
" -123 " |> lenient_parse.to_int |> io.debug
// Ok(-123)
// Parse a string containing an integer with an underscores
// Parse a string containing an integer with underscores
"1_000_000" |> lenient_parse.to_int |> io.debug
// Ok(1000000)
}
Expand Down

0 comments on commit c009791

Please sign in to comment.