about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKampfkarren <boynedmaster@gmail.com>2018-12-13 10:46:21 -0800
committerKampfkarren <boynedmaster@gmail.com>2018-12-13 10:46:21 -0800
commit985eba08a558bae9a9042b65df59340d227d7673 (patch)
tree88c12058c165c2d3a0d639718524e8a50b8af376
parentdb00c3320f8f0235f2ae022de7ecac65bfd80ff8 (diff)
downloadrust-985eba08a558bae9a9042b65df59340d227d7673.tar.gz
rust-985eba08a558bae9a9042b65df59340d227d7673.zip
Line length fix
-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