From aadd0148632645a3244c0ca119d47c5a736c042a Mon Sep 17 00:00:00 2001 From: cherryblossom <31467609+cherryblossom000@users.noreply.github.com> Date: Wed, 17 Aug 2022 18:56:06 +1000 Subject: [PATCH] Fix typo in as_undescore docs du -> due --- clippy_lints/src/as_underscore.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/as_underscore.rs b/clippy_lints/src/as_underscore.rs index 0bdef9d0a7e8..5b4b2c631c89 100644 --- a/clippy_lints/src/as_underscore.rs +++ b/clippy_lints/src/as_underscore.rs @@ -12,7 +12,7 @@ declare_clippy_lint! { /// /// ### Why is this bad? /// The conversion might include lossy conversion and dangerous cast that might go - /// undetected du to the type being inferred. + /// undetected due to the type being inferred. /// /// The lint is allowed by default as using `_` is less wordy than always specifying the type. ///