about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-09-06 07:16:18 +0000
committerbors <bors@rust-lang.org>2024-09-06 07:16:18 +0000
commit7d7b298a4e26ee9998bc7756f740d65557ec67e2 (patch)
treed9bca9443f7f32fe899aaff0898c749431997c32
parent9e9042a11074c83a2c40b4e8ce29f9e2bb610d34 (diff)
parent79081f1271222d4ea12c923d949fc4f1aece2362 (diff)
downloadrust-7d7b298a4e26ee9998bc7756f740d65557ec67e2.tar.gz
rust-7d7b298a4e26ee9998bc7756f740d65557ec67e2.zip
Auto merge of #13352 - kpreid:patch-1, r=xFrednet
Correct version of `too_long_first_doc_paragraph`

`too_long_first_doc_paragraph` is, empirically, not in the Rust 1.81.0 release.

changelog: [`too_long_first_doc_paragraph`]: correct Rust version number in documentation.
-rw-r--r--clippy_lints/src/doc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/doc/mod.rs b/clippy_lints/src/doc/mod.rs
index 6db63b59e02..f2c87f0fd70 100644
--- a/clippy_lints/src/doc/mod.rs
+++ b/clippy_lints/src/doc/mod.rs
@@ -450,7 +450,7 @@ declare_clippy_lint! {
     /// /// and probably spanning a many rows.
     /// struct Foo {}
     /// ```
-    #[clippy::version = "1.81.0"]
+    #[clippy::version = "1.82.0"]
     pub TOO_LONG_FIRST_DOC_PARAGRAPH,
     style,
     "ensure that the first line of a documentation paragraph isn't too long"