Skip to content

Commit

Permalink
Line length fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Dec 13, 2018
1 parent db00c33 commit 985eba0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clippy_lints/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 985eba0

Please sign in to comment.