Skip to content

Commit 9a84586

Browse files
committed
rename the MSRV alias MANUAL_DIV_CEIL to DIV_CEIL
1 parent 2cdb90d commit 9a84586

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clippy_lints/src/manual_div_ceil.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl_lint_pass!(ManualDivCeil => [MANUAL_DIV_CEIL]);
5959

6060
impl<'tcx> LateLintPass<'tcx> for ManualDivCeil {
6161
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &Expr<'_>) {
62-
if !self.msrv.meets(msrvs::MANUAL_DIV_CEIL) {
62+
if !self.msrv.meets(msrvs::DIV_CEIL) {
6363
return;
6464
}
6565

clippy_utils/src/msrvs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ msrv_aliases! {
3030
1,76,0 { PTR_FROM_REF, OPTION_RESULT_INSPECT }
3131
1,75,0 { OPTION_AS_SLICE }
3232
1,74,0 { REPR_RUST, IO_ERROR_OTHER }
33-
1,73,0 { MANUAL_DIV_CEIL }
33+
1,73,0 { DIV_CEIL }
3434
1,71,0 { TUPLE_ARRAY_CONVERSIONS, BUILD_HASHER_HASH_ONE }
3535
1,70,0 { OPTION_RESULT_IS_VARIANT_AND, BINARY_HEAP_RETAIN }
3636
1,68,0 { PATH_MAIN_SEPARATOR_STR }

0 commit comments

Comments
 (0)