Fix spacing typo in new inefficient_to_string info

This commit is contained in:
GiGaGon 2025-10-15 12:06:20 -07:00 committed by GitHub
parent 8116b2354a
commit 2fe16a574f
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