about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrank <lifrank@grinnell.edu>2020-09-24 15:52:25 -0500
committerFrank <lifrank@grinnell.edu>2020-09-25 11:09:04 -0500
commitf4d88cbb1f150e94c613fdd082c5bf8418443804 (patch)
tree61c59e6dc50e96ad910e0b8928c4babba5774a73
parent12e5637f757f4fd4cc2331619ebeca59934a910d (diff)
downloadrust-f4d88cbb1f150e94c613fdd082c5bf8418443804.tar.gz
rust-f4d88cbb1f150e94c613fdd082c5bf8418443804.zip
run cargo dev update_lints
-rw-r--r--README.md2
-rw-r--r--src/lintlist/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index a2984d73641..62a8be0abf2 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
 
 A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
 
-[There are over 350 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
+[There are over 400 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
 
 We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
 
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index a77bbcb0abe..57dc48c0667 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -384,7 +384,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
     Lint {
         name: "disallowed_method",
         group: "nursery",
-        desc: "default lint description",
+        desc: "used disallowed method call",
         deprecation: None,
         module: "disallowed_method",
     },