aboutsummaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/style.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index 46bd8b9b2..c4eb7bc7a 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -91,8 +91,8 @@ But many users read changelogs.
91We don't enforce Clippy. 91We don't enforce Clippy.
92A number of default lints have high false positive rate. 92A number of default lints have high false positive rate.
93Selectively patching false-positives with `allow(clippy)` is considered worse than not using Clippy at all. 93Selectively patching false-positives with `allow(clippy)` is considered worse than not using Clippy at all.
94There's `cargo xtask lint` command which runs a subset of low-FPR lints. 94There's a `cargo lint` command which runs a subset of low-FPR lints.
95Careful tweaking of `xtask lint` is welcome. 95Careful tweaking of `lint` is welcome.
96Of course, applying Clippy suggestions is welcome as long as they indeed improve the code. 96Of course, applying Clippy suggestions is welcome as long as they indeed improve the code.
97 97
98**Rationale:** see [rust-lang/clippy#5537](https://github.com/rust-lang/rust-clippy/issues/5537). 98**Rationale:** see [rust-lang/clippy#5537](https://github.com/rust-lang/rust-clippy/issues/5537).