Skip to content

Commit af9671f

Browse files
author
Matthias Kaak
committed
Ran rustfmt
1 parent 8d7b092 commit af9671f

File tree

1 file changed

+3
-1
lines changed
  • compiler/rustc_hir_typeck/src

1 file changed

+3
-1
lines changed

compiler/rustc_hir_typeck/src/op.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
335335
format!("cannot divide `{lhs_ty}` by `{rhs_ty}`")
336336
}
337337
hir::BinOpKind::Rem => {
338-
format!("cannot calculate the remainder of `{lhs_ty}` divided by `{rhs_ty}`")
338+
format!(
339+
"cannot calculate the remainder of `{lhs_ty}` divided by `{rhs_ty}`"
340+
)
339341
}
340342
hir::BinOpKind::BitAnd => {
341343
format!("no implementation for `{lhs_ty} & {rhs_ty}`")

0 commit comments

Comments
 (0)