Skip to content

Commit 985eba0

Browse files
committedDec 13, 2018
Line length fix
1 parent db00c33 commit 985eba0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎clippy_lints/src/types.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ declare_clippy_lint! {
7373
/// **Why is this bad?** `Vec` already keeps its contents in a separate area on
7474
/// the heap. So if you `Box` its contents, you just add another level of indirection.
7575
///
76-
/// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see #3530, 1st comment).
76+
/// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see #3530,
77+
/// 1st comment).
7778
///
7879
/// **Example:**
7980
/// ```rust

0 commit comments

Comments
 (0)
Please sign in to comment.