Ran rustfmt

This commit is contained in:
Matthias Kaak 2023-01-30 20:04:33 +00:00
parent 8d7b092a11
commit af9671fd28
No known key found for this signature in database
GPG Key ID: 7CFF58348CA8546E

View File

@ -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}`")