mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 03:23:25 +00:00
Line length fix
This commit is contained in:
parent
db00c3320f
commit
985eba08a5
@ -73,7 +73,8 @@ declare_clippy_lint! {
|
|||||||
/// **Why is this bad?** `Vec` already keeps its contents in a separate area on
|
/// **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.
|
/// 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:**
|
/// **Example:**
|
||||||
/// ```rust
|
/// ```rust
|
||||||
|
Loading…
Reference in New Issue
Block a user