From 22be60b4f07bcfc8e72976b4d9f2cd1f9cae29d5 Mon Sep 17 00:00:00 2001 From: kraktus Date: Sun, 2 Oct 2022 12:35:02 +0200 Subject: [PATCH] fix indentation --- clippy_lints/src/manual_assert.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clippy_lints/src/manual_assert.rs b/clippy_lints/src/manual_assert.rs index cbc9c4ca6ad0..825ec84b4a81 100644 --- a/clippy_lints/src/manual_assert.rs +++ b/clippy_lints/src/manual_assert.rs @@ -56,9 +56,9 @@ impl<'tcx> LateLintPass<'tcx> for ManualAssert { comments += "\n"; } let (cond, not) = match cond.kind { - ExprKind::Unary(UnOp::Not, e) => (e, ""), - _ => (cond, "!"), - }; + ExprKind::Unary(UnOp::Not, e) => (e, ""), + _ => (cond, "!"), + }; let cond_sugg = sugg::Sugg::hir_with_applicability(cx, cond, "..", &mut applicability).maybe_par(); let sugg = format!("assert!({not}{cond_sugg}, {format_args_snip});"); // we show to the user the suggestion without the comments, but when applicating the fix, include the comments in the block