We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db00c33 commit 985eba0Copy full SHA for 985eba0
clippy_lints/src/types.rs
@@ -73,7 +73,8 @@ declare_clippy_lint! {
73
/// **Why is this bad?** `Vec` already keeps its contents in a separate area on
74
/// the heap. So if you `Box` its contents, you just add another level of indirection.
75
///
76
-/// **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,
77
+/// 1st comment).
78
79
/// **Example:**
80
/// ```rust
0 commit comments