]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/format_push_string.rs
Auto merge of #9148 - arieluy:then_some_unwrap_or, r=Jarcho
[rust.git] / clippy_lints / src / format_push_string.rs
index 17aa482d7160feda90f8312d489ff8d9f6155359..ebf5ab086dcea7ae6966984ad8810a47c39fcf3a 100644 (file)
     /// ### Why is this bad?
     /// Introduces an extra, avoidable heap allocation.
     ///
+    /// ### Known problems
+    /// `format!` returns a `String` but `write!` returns a `Result`.
+    /// Thus you are forced to ignore the `Err` variant to achieve the same API.
+    ///
+    /// While using `write!` in the suggested way should never fail, this isn't necessarily clear to the programmer.
+    ///
     /// ### Example
     /// ```rust
     /// let mut s = String::new();