Formatting changes requested by ThibsG.

This commit is contained in:
Kyle Huey 2020-08-22 21:40:01 -07:00
parent c1d2b9376a
commit 04912ca115

View File

@ -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.
///