Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
anweiss committed Sep 26, 2022
1 parent 350ece5 commit 3e2b99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ fn is_ealpha(ch: char) -> bool {
}

fn is_digit(ch: char) -> bool {
ch.is_ascii_hexdigit()
ch.is_ascii_digit()
}

fn is_hexdigit(ch: char) -> bool {
Expand Down

0 comments on commit 3e2b99e

Please sign in to comment.