about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-07-23 13:05:21 +0000
committerbors <bors@rust-lang.org>2022-07-23 13:05:21 +0000
commit580f642cfac7d7035c563a060265b3dbef092ada (patch)
tree05d6ad7568e8ab0626fc7b05fe4ab39ce8f9cfbc
parent75dcbd5b92baf147c488747ba571e1338b5a46c7 (diff)
parenta7389556f86bec7d31ee8b8cce5358f9af030cf0 (diff)
downloadrust-580f642cfac7d7035c563a060265b3dbef092ada.tar.gz
rust-580f642cfac7d7035c563a060265b3dbef092ada.zip
Auto merge of #9230 - RalfJung:fix-doc-lint-names, r=Alexendoo
fix outdated lint names in docs

*Please write a short comment explaining your change (or "none" for internal only changes)*

changelog: fix outdated lint names in "as_conversions" documentation
-rw-r--r--clippy_lints/src/as_conversions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/as_conversions.rs b/clippy_lints/src/as_conversions.rs
index 6e5c8f44581..c7a76e5f907 100644
--- a/clippy_lints/src/as_conversions.rs
+++ b/clippy_lints/src/as_conversions.rs
@@ -11,7 +11,7 @@ declare_clippy_lint! {
     /// Note that this lint is specialized in linting *every single* use of `as`
     /// regardless of whether good alternatives exist or not.
     /// If you want more precise lints for `as`, please consider using these separate lints:
-    /// `unnecessary_cast`, `cast_lossless/possible_truncation/possible_wrap/precision_loss/sign_loss`,
+    /// `unnecessary_cast`, `cast_lossless/cast_possible_truncation/cast_possible_wrap/cast_precision_loss/cast_sign_loss`,
     /// `fn_to_numeric_cast(_with_truncation)`, `char_lit_as_u8`, `ref_to_mut` and `ptr_as_ptr`.
     /// There is a good explanation the reason why this lint should work in this way and how it is useful
     /// [in this issue](https://github.com/rust-lang/rust-clippy/issues/5122).