From c7aa8b0458eb0f36e72df5126602d9a8723ad53c Mon Sep 17 00:00:00 2001 From: Tim Neumann Date: Wed, 4 Apr 2018 19:49:55 +0200 Subject: [PATCH] Add missing `clippy_` prefix to lint groups in Readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f3320b0e260..03ee1262a9c 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ We have a bunch of lint categories to allow you to choose how much clippy is sup * `clippy` (everything that has no false positives) * `clippy_pedantic` (everything) * `clippy_style` (code that should be written in a more idiomatic way) -* `complexity` (code that does something simple but in a complex way) -* `perf` (code that can be written in a faster way) -* **`correctness`** (code that is just outright wrong or very very useless) +* `clippy_complexity` (code that does something simple but in a complex way) +* `clippy_perf` (code that can be written in a faster way) +* **`clippy_correctness`** (code that is just outright wrong or very very useless) More to come, please [file an issue](https://github.com/rust-lang-nursery/rust-clippy/issues) if you have ideas!