Skip to content

Commit 55f32d9

Browse files
committed
add missing MSRV configuration information for manual_div_ceil
1 parent 3c9a0ab commit 55f32d9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

book/src/lint_configuration.md

+1
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,7 @@ The minimum rust version that the project supports. Defaults to the `rust-versio
764764
* [`manual_bits`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_bits)
765765
* [`manual_c_str_literals`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_c_str_literals)
766766
* [`manual_clamp`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_clamp)
767+
* [`manual_div_ceil`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_div_ceil)
767768
* [`manual_flatten`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_flatten)
768769
* [`manual_hash_one`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_hash_one)
769770
* [`manual_is_ascii_check`](https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check)

clippy_config/src/conf.rs

+1
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,7 @@ define_Conf! {
619619
manual_bits,
620620
manual_c_str_literals,
621621
manual_clamp,
622+
manual_div_ceil,
622623
manual_flatten,
623624
manual_hash_one,
624625
manual_is_ascii_check,

0 commit comments

Comments
 (0)