From 7e192b60793279f9c4212169592a0c503222bea3 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 11 Feb 2026 12:41:27 +0900 Subject: [PATCH] fmt --- actix-web/src/introspection.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/actix-web/src/introspection.rs b/actix-web/src/introspection.rs index 81b6b75d3..32a55143a 100644 --- a/actix-web/src/introspection.rs +++ b/actix-web/src/introspection.rs @@ -1006,10 +1006,7 @@ fn format_reachability(item: &IntrospectionReportItem) -> String { .iter() .map(|note| sanitize_text(note)) .collect::>(); - format!( - " | PotentiallyUnreachable | Notes: {:?}", - notes - ) + format!(" | PotentiallyUnreachable | Notes: {:?}", notes) } }