Re-enable clippy useless-format (#14095)

This commit is contained in:
Simon Brugman 2024-11-04 18:25:25 +01:00 committed by GitHub
parent fb94b71e63
commit b7e32b0a18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 5 deletions

View file

@ -53,7 +53,7 @@ impl Violation for EscapeSequenceInDocstring {
}
fn fix_title(&self) -> Option<String> {
Some(format!(r#"Add `r` prefix"#))
Some(r#"Add `r` prefix"#.to_string())
}
}