trailing comma

Should have actually ran rustfmt on it, rather than attempting to fix it manually
This commit is contained in:
Ryan Wiedemann 2020-08-10 09:21:20 -06:00 committed by Ryan1729
parent 616682deb7
commit c70581732d

View file

@ -87,7 +87,7 @@ impl<'tcx> LateLintPass<'tcx> for SuspiciousImpl {
expr,
binop.node,
&[
"Add", "Sub", "Mul", "Div", "Rem", "BitAnd", "BitOr", "BitXor", "Shl", "Shr"
"Add", "Sub", "Mul", "Div", "Rem", "BitAnd", "BitOr", "BitXor", "Shl", "Shr",
],
&[
hir::BinOpKind::Add,