Skip to content

Commit 167840e

Browse files
committed
Apply suggestions
1 parent 20e9c7e commit 167840e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/let_underscore.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ declare_clippy_lint! {
122122
/// }
123123
/// // Either provide a type annotation:
124124
/// let _: Result<u32, ()> = foo();
125-
/// // …or drop the `let` keyword to fully ignore the type no matter what:
125+
/// // …or drop the `let` keyword to allow this anyway.
126126
/// _ = foo();
127127
/// ```
128128
#[clippy::version = "1.69.0"]

0 commit comments

Comments
 (0)