From f383836bad48a791c93d1f6bd5670a2d19a545d8 Mon Sep 17 00:00:00 2001 From: Alexander Akait <4567934+alexander-akait@users.noreply.github.com> Date: Wed, 7 Dec 2022 03:59:29 +0300 Subject: [PATCH] chore(css/lexer): Fix typo (#6588) --- crates/swc_css_parser/benches/lexer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/swc_css_parser/benches/lexer.rs b/crates/swc_css_parser/benches/lexer.rs index ba1c696deb93..3062d30609a1 100644 --- a/crates/swc_css_parser/benches/lexer.rs +++ b/crates/swc_css_parser/benches/lexer.rs @@ -21,7 +21,7 @@ fn bench_stylesheet(b: &mut Bencher, src: &'static str) { } fn run(c: &mut Criterion, id: &str, src: &'static str) { - c.bench_function(&format!("css/parser/{}", id), |b| { + c.bench_function(&format!("css/lexer/{}", id), |b| { bench_stylesheet(b, src); }); }