diff options
| author | Timo <30553356+y21@users.noreply.github.com> | 2024-12-12 12:29:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-12 12:29:54 +0000 |
| commit | f2aed50873e8e908119044c283c33cf6ef0b66e0 (patch) | |
| tree | a26072d6a76e5a8d94c29e0ce2fbdf0d09f87bab | |
| parent | c2d23ad0df5b3603ea0a1d2f4892fb84faaf8a3f (diff) | |
| parent | 35f4b924bc54b0b4fd50847e09ea319337d3db41 (diff) | |
| download | rust-f2aed50873e8e908119044c283c33cf6ef0b66e0.tar.gz rust-f2aed50873e8e908119044c283c33cf6ef0b66e0.zip | |
fix version attribute for `arbitrary_source_item_ordering` lint (#13819)
fix #13818 The `arbitrary_source_item_ordering` lint does not exist in v1.82.0, so I think it needs to be fixed. changelog: [`arbitrary_source_item_ordering`]: corrected available version information for this lint
| -rw-r--r-- | clippy_lints/src/arbitrary_source_item_ordering.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/arbitrary_source_item_ordering.rs b/clippy_lints/src/arbitrary_source_item_ordering.rs index 8719f61a890..cf33e1444e4 100644 --- a/clippy_lints/src/arbitrary_source_item_ordering.rs +++ b/clippy_lints/src/arbitrary_source_item_ordering.rs @@ -126,7 +126,7 @@ declare_clippy_lint! { /// /// [cargo-pgo]: https://github.com/Kobzol/cargo-pgo/blob/main/README.md /// - #[clippy::version = "1.82.0"] + #[clippy::version = "1.84.0"] pub ARBITRARY_SOURCE_ITEM_ORDERING, restriction, "arbitrary source item ordering" |
