]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/vec_resize_to_zero.rs
Auto merge of #87421 - estebank:perf-run, r=oli-obk
[rust.git] / src / tools / clippy / clippy_lints / src / vec_resize_to_zero.rs
index 5540e87405ff9d083e742933639bca476c505da9..5c0429db6b8dfe5ba6c988675db17b8b2268f6e8 100644 (file)
 use rustc_span::source_map::Spanned;
 
 declare_clippy_lint! {
-    /// **What it does:** Finds occurrences of `Vec::resize(0, an_int)`
+    /// ### What it does
+    /// Finds occurrences of `Vec::resize(0, an_int)`
     ///
-    /// **Why is this bad?** This is probably an argument inversion mistake.
+    /// ### Why is this bad?
+    /// This is probably an argument inversion mistake.
     ///
-    /// **Known problems:** None.
-    ///
-    /// **Example:**
+    /// ### Example
     /// ```rust
     /// vec!(1, 2, 3, 4, 5).resize(0, 5)
     /// ```