about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorThibsG <Thibs@debian.com>2020-05-15 18:20:07 +0200
committerThibsG <Thibs@debian.com>2020-05-15 18:27:11 +0200
commitab87f87ba03518da23ca510249aa3f5908a42368 (patch)
treec637d66cc6ea46924d432d7f5e2493fcc51a4c6f /src
parent93386563f66823ac7d10641c007b0bbc23ab09e6 (diff)
Fix CHANGELOG.md and lint names plural
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index e90b9c15747..feada261a4c 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -74,11 +74,11 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
         module: "blacklisted_name",
     },
     Lint {
-        name: "block_in_if_condition",
+        name: "blocks_in_if_conditions",
         group: "style",
         desc: "useless or complex blocks that can be eliminated in conditions",
         deprecation: None,
-        module: "block_in_if_condition",
+        module: "blocks_in_if_conditions",
     },
     Lint {
         name: "bool_comparison",
@@ -676,7 +676,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
         module: "loops",
     },
     Lint {
-        name: "for_loop_over_fallible",
+        name: "for_loops_over_fallibles",
         group: "correctness",
         desc: "for-looping over an `Option` or a `Result`, which is more clearly expressed as an `if let`",
         deprecation: None,