Skip to content

Commit

Permalink
Typo in function call; see earlier function name change commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chipnertkj committed Apr 5, 2024
1 parent d6b3c85 commit 563b194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ fn numeric(b: &mut Bencher) {
for _ in 0..1000000 {
let mut input = ParserInput::new("10px");
let mut input = Parser::new(&mut input);
let _ = test::black_box(input.next());
let _ = test::black_box(input.try_next());
}
})
}
Expand Down

0 comments on commit 563b194

Please sign in to comment.