You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clippy_lints/src/types.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,7 @@ declare_clippy_lint! {
75
75
/// **Why is this bad?** `Vec` already keeps its contents in a separate area on
76
76
/// the heap. So if you `Box` its contents, you just add another level of indirection.
77
77
///
78
-
/// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see #3530,
78
+
/// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see [#3530](https://github.com/rust-lang/rust-clippy/issues/3530),
0 commit comments