Skip to content

Commit 563b194

Browse files
committed
Typo in function call; see earlier function name change commit
1 parent d6b3c85 commit 563b194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ fn numeric(b: &mut Bencher) {
826826
for _ in 0..1000000 {
827827
let mut input = ParserInput::new("10px");
828828
let mut input = Parser::new(&mut input);
829-
let _ = test::black_box(input.next());
829+
let _ = test::black_box(input.try_next());
830830
}
831831
})
832832
}

0 commit comments

Comments
 (0)