Fix spacing typo in new inefficient_to_string info (#15888)

changelog: none
This commit is contained in:
llogiq 2025-11-01 22:11:09 +00:00 committed by GitHub
commit 6729799845
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1083,7 +1083,7 @@ declare_clippy_lint! {
///
/// ### Why is this bad?
/// In versions of the compiler before Rust 1.82.0, this bypasses the specialized
/// implementation of`ToString` and instead goes through the more expensive string
/// implementation of `ToString` and instead goes through the more expensive string
/// formatting facilities.
///
/// ### Example