Skip to content

Commit

Permalink
trailing comma
Browse files Browse the repository at this point in the history
Should have actually ran rustfmt on it, rather than attempting to fix it manually
  • Loading branch information
Ryan1729 authored Aug 10, 2020
1 parent 39d30ea commit 9dcfd83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/suspicious_trait_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,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,
Expand Down

0 comments on commit 9dcfd83

Please sign in to comment.