mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
use String::from instead of format!() macro to craft string clippy::useless_format
This commit is contained in:
@@ -353,7 +353,7 @@ fn make_tooltip_text(&self, coverage_region: &CoverageRegion) -> String {
|
||||
if !INCLUDE_COVERAGE_STATEMENTS {
|
||||
continue;
|
||||
}
|
||||
format!("unreachable")
|
||||
String::from("unreachable")
|
||||
}
|
||||
},
|
||||
_ => format!("{:?}", statement),
|
||||
|
||||
Reference in New Issue
Block a user