From 001ef47633fb28084e2d276d82802db0bf20d8b6 Mon Sep 17 00:00:00 2001 From: Ali MJ Al-Nasrawy Date: Tue, 22 Mar 2022 21:57:35 +0300 Subject: [PATCH] fmt --- actix-router/benches/quoter.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/actix-router/benches/quoter.rs b/actix-router/benches/quoter.rs index c840f9ea2..c18f1620e 100644 --- a/actix-router/benches/quoter.rs +++ b/actix-router/benches/quoter.rs @@ -6,7 +6,9 @@ fn compare_quoters(c: &mut Criterion) { let mut group = c.benchmark_group("Compare Quoters"); let quoter = actix_router::Quoter::new(b"", b""); - let path_quoted = (0..=0x7f).map(|c| format!("%{:02X}", c)).collect::(); + let path_quoted = (0..=0x7f) + .map(|c| format!("%{:02X}", c)) + .collect::(); let path_unquoted = ('\u{00}'..='\u{7f}').collect::(); group.bench_function("quoter_unquoted", |b| {