Skip to content

Commit

Permalink
Formatting changes requested by ThibsG.
Browse files Browse the repository at this point in the history
  • Loading branch information
khuey committed Aug 23, 2020
1 parent 52332ca commit b060058
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions clippy_lints/src/async_yields_async.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ use rustc_lint::{LateContext, LateLintPass};
use rustc_session::{declare_lint_pass, declare_tool_lint};

declare_clippy_lint! {
/// **What it does:**
/// Checks for async blocks that yield values of types that can themselves
/// be awaited.
/// **What it does:** Checks for async blocks that yield values of types
/// that can themselves be awaited.
///
/// **Why is this bad?**
/// An await is likely missing.
/// **Why is this bad?** An await is likely missing.
///
/// **Known problems:** None.
///
Expand Down

0 comments on commit b060058

Please sign in to comment.