Skip to content

Commit 9f618b1

Browse files
committed
Un-ingnore code snippets
1 parent 1f93045 commit 9f618b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/let_underscore.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ declare_clippy_lint! {
6868
/// and ignore the resulting value.
6969
///
7070
/// ### Example
71-
/// ```rust,ignore
71+
/// ```rust
7272
/// async fn foo() -> Result<(), ()> { }
7373
/// let _ = foo();
7474
/// ```
7575
///
7676
/// Use instead:
77-
/// ```rust,ignore
77+
/// ```rust
7878
/// let _ = foo().await;
7979
/// ```
8080
#[clippy::version = "1.66"]

0 commit comments

Comments
 (0)