diff options
| author | Kyle Huey <khuey@kylehuey.com> | 2020-08-22 21:40:01 -0700 |
|---|---|---|
| committer | Kyle Huey <khuey@kylehuey.com> | 2020-08-29 15:33:54 -0700 |
| commit | 04912ca115ff153a97d80b604435b10dcb155dd0 (patch) | |
| tree | ba7ab4a10d002485e2b79125a7d589a302c70f52 | |
| parent | c1d2b9376a6bb4fc06f845e12b9c2a93079bb2ee (diff) | |
Formatting changes requested by ThibsG.
| -rw-r--r-- | clippy_lints/src/async_yields_async.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/clippy_lints/src/async_yields_async.rs b/clippy_lints/src/async_yields_async.rs index ae347fcd3e8..88d9d3b5a26 100644 --- a/clippy_lints/src/async_yields_async.rs +++ b/clippy_lints/src/async_yields_async.rs @@ -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. /// |
