Address review comments

This commit is contained in:
Samuel Moelius 2025-01-14 06:06:06 -05:00
parent a7adb8217e
commit 87f7e21009
2 changed files with 17 additions and 15 deletions

View file

@ -11,7 +11,7 @@ declare_clippy_lint! {
/// Detects cases where the result of a `format!` call is
/// appended to an existing `String`.
///
/// ### Why restrict this?
/// ### Why is this bad?
/// Introduces an extra, avoidable heap allocation.
///
/// ### Known problems