File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ declare_clippy_lint! {
28
28
#[ clippy:: version = "1.42.0" ]
29
29
pub LET_UNDERSCORE_MUST_USE ,
30
30
restriction,
31
- "non-binding let on a `#[must_use]` expression"
31
+ "non-binding ` let` on a `#[must_use]` expression"
32
32
}
33
33
34
34
declare_clippy_lint ! {
@@ -56,7 +56,7 @@ declare_clippy_lint! {
56
56
#[ clippy:: version = "1.43.0" ]
57
57
pub LET_UNDERSCORE_LOCK ,
58
58
correctness,
59
- "non-binding let on a synchronization lock"
59
+ "non-binding ` let` on a synchronization lock"
60
60
}
61
61
62
62
declare_clippy_lint ! {
@@ -80,7 +80,7 @@ declare_clippy_lint! {
80
80
#[ clippy:: version = "1.66" ]
81
81
pub LET_UNDERSCORE_FUTURE ,
82
82
suspicious,
83
- "non-binding let on a future"
83
+ "non-binding ` let` on a future"
84
84
}
85
85
86
86
declare_lint_pass ! ( LetUnderscore => [ LET_UNDERSCORE_MUST_USE , LET_UNDERSCORE_LOCK , LET_UNDERSCORE_FUTURE ] ) ;
You can’t perform that action at this time.
0 commit comments