Skip to content

Commit

Permalink
fix #55
Browse files Browse the repository at this point in the history
which was introduced by a typo while fixing clippy lints
  • Loading branch information
Simon-Laux committed Nov 15, 2023
1 parent d588c6d commit 1237482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/link_url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ fn is_reserved(char: char) -> bool {
}

fn is_hex_digit(c: char) -> bool {
c.is_ascii_digit()
c.is_ascii_hexdigit()
}

fn escaped_char(input: &str) -> IResult<&str, &str, LinkParseError<&str>> {
Expand Down

0 comments on commit 1237482

Please sign in to comment.