diff options
| author | llogiq <bogusandre@gmail.com> | 2025-02-07 10:07:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-07 10:07:50 +0000 |
| commit | 33394d28be5fabc9cc4e4a788c4e529340211717 (patch) | |
| tree | a380665b86a5e87be958bea0d85139696772c80b | |
| parent | 4a94ad6c5233ae51865a2dad0068bbfe60daed45 (diff) | |
| parent | 44fda914d3c9f448765283a80d1e19793c4e7e1b (diff) | |
| download | rust-33394d28be5fabc9cc4e4a788c4e529340211717.tar.gz rust-33394d28be5fabc9cc4e4a788c4e529340211717.zip | |
Correct version of `doc_overindented_list_items` (#14152)
Fix the version of `doc_overindented_list_items`. It actually will be in 1.86.0, not 1.80.0. (https://github.com/rust-lang/rust/pull/136209 has a milestone of 1.86.0) changelog: none
| -rw-r--r-- | clippy_lints/src/doc/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/doc/mod.rs b/clippy_lints/src/doc/mod.rs index 3d8ce7becdb..1a21319a042 100644 --- a/clippy_lints/src/doc/mod.rs +++ b/clippy_lints/src/doc/mod.rs @@ -454,7 +454,7 @@ declare_clippy_lint! { /// /// and this line is overindented. /// # fn foo() {} /// ``` - #[clippy::version = "1.80.0"] + #[clippy::version = "1.86.0"] pub DOC_OVERINDENTED_LIST_ITEMS, style, "ensure list items are not overindented" |
