Skip to content

Commit 048a5f9

Browse files
Changed Suggestion Applicability
1 parent 6e71db5 commit 048a5f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/mul_add.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MulAddCheck {
7777
snippet(cx, mult_rhs.span, "_"),
7878
snippet(cx, rhs.span, "_"),
7979
),
80-
Applicability::Unspecified,
80+
Applicability::MaybeIncorrect,
8181
);
8282
}
8383
}
@@ -96,7 +96,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MulAddCheck {
9696
snippet(cx, mult_rhs.span, "_"),
9797
snippet(cx, lhs.span, "_"),
9898
),
99-
Applicability::Unspecified,
99+
Applicability::MaybeIncorrect,
100100
);
101101
}
102102
}

0 commit comments

Comments
 (0)