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) } }