about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--clippy_lints/src/types.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/clippy_lints/src/types.rs b/clippy_lints/src/types.rs
index 62e99b92d35..dfa4cfdcf94 100644
--- a/clippy_lints/src/types.rs
+++ b/clippy_lints/src/types.rs
@@ -73,7 +73,8 @@ declare_clippy_lint! {
 /// **Why is this bad?** `Vec` already keeps its contents in a separate area on
 /// the heap. So if you `Box` its contents, you just add another level of indirection.
 ///
-/// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see #3530, 1st comment).
+/// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see #3530,
+/// 1st comment).
 ///
 /// **Example:**
 /// ```rust