File tree 5 files changed +9
-8
lines changed
5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ declare_clippy_lint! {
13
13
/// repetitive
14
14
///
15
15
/// **Known problems:** The match statement may be slower due to the compiler
16
- /// not inlining the call to cmp. See issue #5354
16
+ /// not inlining the call to cmp. See issue [ #5354](https://github.com/rust-lang/rust-clippy/issues/5354)
17
17
///
18
18
/// **Example:**
19
19
/// ```rust,ignore
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ declare_clippy_lint! {
22
22
/// **Known problems:** If creating the closure inside the closure has a side-
23
23
/// effect then moving the closure creation out will change when that side-
24
24
/// effect runs.
25
- /// See rust-lang/rust-clippy# 1439 for more details.
25
+ /// See [#1439](https://github.com/ rust-lang/rust-clippy/issues/ 1439) for more details.
26
26
///
27
27
/// **Example:**
28
28
/// ```rust,ignore
@@ -45,8 +45,9 @@ declare_clippy_lint! {
45
45
///
46
46
/// **Why is this bad?** It's unnecessary to create the closure.
47
47
///
48
- /// **Known problems:** rust-lang/rust-clippy#3071, rust-lang/rust-clippy#4002,
49
- /// rust-lang/rust-clippy#3942
48
+ /// **Known problems:** [#3071](https://github.com/rust-lang/rust-clippy/issues/3071),
49
+ /// [#3942](https://github.com/rust-lang/rust-clippy/issues/3942),
50
+ /// [#4002](https://github.com/rust-lang/rust-clippy/issues/4002)
50
51
///
51
52
///
52
53
/// **Example:**
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ declare_clippy_lint! {
218
218
/// **Why is this bad?** The `while let` loop is usually shorter and more
219
219
/// readable.
220
220
///
221
- /// **Known problems:** Sometimes the wrong binding is displayed (#383).
221
+ /// **Known problems:** Sometimes the wrong binding is displayed ([ #383](https://github.com/rust-lang/rust-clippy/issues/383) ).
222
222
///
223
223
/// **Example:**
224
224
/// ```rust,no_run
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) ,
79
79
/// 1st comment).
80
80
///
81
81
/// **Example:**
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ declare_clippy_lint! {
28
28
/// feels inconsistent.
29
29
///
30
30
/// **Known problems:**
31
- /// - False positive when using associated types (#2843)
32
- /// - False positives in some situations when using generics (#3410)
31
+ /// - False positive when using associated types ([ #2843](https://github.com/rust-lang/rust-clippy/issues/2843) )
32
+ /// - False positives in some situations when using generics ([ #3410](https://github.com/rust-lang/rust-clippy/issues/3410) )
33
33
///
34
34
/// **Example:**
35
35
/// ```rust
You can’t perform that action at this time.
0 commit comments