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 committed Aug 12, 2020
1 parent 616682d commit c705817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/suspicious_trait_impl.rs
Expand Up @@ -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,
Expand Down

0 comments on commit c705817

Please sign in to comment.