Un-ingnore code snippets

This commit is contained in:
Steven Casper 2022-11-01 14:26:18 -07:00
parent 1f930452b9
commit 9f618b196a

View file

@ -68,13 +68,13 @@ declare_clippy_lint! {
/// and ignore the resulting value.
///
/// ### Example
/// ```rust,ignore
/// ```rust
/// async fn foo() -> Result<(), ()> { }
/// let _ = foo();
/// ```
///
/// Use instead:
/// ```rust,ignore
/// ```rust
/// let _ = foo().await;
/// ```
#[clippy::version = "1.66"]