From af9671fd28601c95c4770aa47c733f81ad6ab607 Mon Sep 17 00:00:00 2001 From: Matthias Kaak Date: Mon, 30 Jan 2023 20:04:33 +0000 Subject: [PATCH] Ran rustfmt --- compiler/rustc_hir_typeck/src/op.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/rustc_hir_typeck/src/op.rs b/compiler/rustc_hir_typeck/src/op.rs index 278f720b62ebe..67769fe4478a2 100644 --- a/compiler/rustc_hir_typeck/src/op.rs +++ b/compiler/rustc_hir_typeck/src/op.rs @@ -335,7 +335,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> { format!("cannot divide `{lhs_ty}` by `{rhs_ty}`") } hir::BinOpKind::Rem => { - format!("cannot calculate the remainder of `{lhs_ty}` divided by `{rhs_ty}`") + format!( + "cannot calculate the remainder of `{lhs_ty}` divided by `{rhs_ty}`" + ) } hir::BinOpKind::BitAnd => { format!("no implementation for `{lhs_ty} & {rhs_ty}`")