mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
trailing comma
Should have actually ran rustfmt on it, rather than attempting to fix it manually
This commit is contained in:
parent
616682deb7
commit
c70581732d
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue