Skip to content

Commit 3c9a0ab

Browse files
committed
rename the MSRV alias MANUAL_DIV_CEIL to DIV_CEIL
1 parent 8cef0b6 commit 3c9a0ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clippy_lints/src/manual_div_ceil.rs

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ msrv_aliases! {
2828
1,76,0 { PTR_FROM_REF, OPTION_RESULT_INSPECT }
2929
1,75,0 { OPTION_AS_SLICE }
3030
1,74,0 { REPR_RUST }
31-
1,73,0 { MANUAL_DIV_CEIL }
31+
1,73,0 { DIV_CEIL }
3232
1,71,0 { TUPLE_ARRAY_CONVERSIONS, BUILD_HASHER_HASH_ONE }
3333
1,70,0 { OPTION_RESULT_IS_VARIANT_AND, BINARY_HEAP_RETAIN }
3434
1,68,0 { PATH_MAIN_SEPARATOR_STR }

0 commit comments

Comments
 (0)