about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2022-12-30 16:10:17 +0200
committerLaurențiu Nicola <lnicola@dend.ro>2022-12-30 16:10:17 +0200
commitd96c489120551d36f5bdb362ce313052350821f7 (patch)
treebf0dcc3d53e7df9002bab20a4633676582e0cf26 /docs/dev
parent3aae785693881ab01850809e6aa121e61c46385b (diff)
downloadrust-d96c489120551d36f5bdb362ce313052350821f7.tar.gz
rust-d96c489120551d36f5bdb362ce313052350821f7.zip
Rephrase clippy policy
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/style.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index a80eebd6329..d2a03fba40d 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -101,7 +101,7 @@ Including a description and GIF suitable for the changelog means less work for t
 
 We don't enforce Clippy.
 A number of default lints have high false positive rate.
-Selectively patching false-positives with `allow(clippy)` is considered worse than not using Clippy at all.
+Selectively patching false-positives with `allow(clippy)` is probably worse than entirely disabling a problematic lint.
 There's a `cargo lint` command which runs a subset of low-FPR lints.
 Careful tweaking of `lint` is welcome.
 Of course, applying Clippy suggestions is welcome as long as they indeed improve the code.