about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@google.com>2024-02-27 17:08:48 -0800
committerTyler Mandry <tmandry@google.com>2024-03-05 16:19:16 -0800
commitc121a26ab978681db9133865089a67a3d9723eda (patch)
treeb0fddc31afab003619924aeaa13e34ea949e5c70 /src
parent3c029725f5a198f4ccb1332bece98c2b50dbce01 (diff)
downloadrust-c121a26ab978681db9133865089a67a3d9723eda.tar.gz
rust-c121a26ab978681db9133865089a67a3d9723eda.zip
Split refining_impl_trait lint into _reachable, _internal variants
Diffstat (limited to 'src')
-rw-r--r--src/tools/lint-docs/src/groups.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/lint-docs/src/groups.rs b/src/tools/lint-docs/src/groups.rs
index c5cd30ccc34..0c39f2fa601 100644
--- a/src/tools/lint-docs/src/groups.rs
+++ b/src/tools/lint-docs/src/groups.rs
@@ -16,6 +16,10 @@ static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[
     ("rust-2018-compatibility", "Lints used to transition code from the 2015 edition to 2018"),
     ("rust-2021-compatibility", "Lints used to transition code from the 2018 edition to 2021"),
     ("rust-2024-compatibility", "Lints used to transition code from the 2021 edition to 2024"),
+    (
+        "refining-impl-trait",
+        "Detects refinement of `impl Trait` return types by trait implementations",
+    ),
 ];
 
 type LintGroups = BTreeMap<String, BTreeSet<String>>;