about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRyan Levick <me@ryanlevick.com>2021-04-26 15:08:55 +0200
committerRyan Levick <me@ryanlevick.com>2021-04-26 15:08:55 +0200
commit4193b0bb7082506f0fd8f15750c989bcd3a5ce33 (patch)
tree1a909fa26311a1ba52f4efdc4883150578dabed5 /src
parent4e25ae480753baca2664d32cea6591f6cd221a32 (diff)
Add 2021 compatibility lint description
Diffstat (limited to 'src')
-rw-r--r--src/tools/lint-docs/src/groups.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/lint-docs/src/groups.rs b/src/tools/lint-docs/src/groups.rs
index e8fd19a6381..9696e35b796 100644
--- a/src/tools/lint-docs/src/groups.rs
+++ b/src/tools/lint-docs/src/groups.rs
@@ -13,6 +13,7 @@ static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[
     ("nonstandard-style", "Violation of standard naming conventions"),
     ("future-incompatible", "Lints that detect code that has future-compatibility problems"),
     ("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"),
 ];
 
 type LintGroups = BTreeMap<String, BTreeSet<String>>;