From b7460ad70be136d938804b69d312628cbeeab9bd Mon Sep 17 00:00:00 2001 From: Vallentin Date: Sun, 11 Aug 2019 12:56:30 +0200 Subject: [PATCH] Fixed repeated word --- clippy_lints/src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/write.rs b/clippy_lints/src/write.rs index 9e26b3e5b9c1..3608c0e61251 100644 --- a/clippy_lints/src/write.rs +++ b/clippy_lints/src/write.rs @@ -73,7 +73,7 @@ declare_clippy_lint! { /// lint is to catch debugging remnants. /// /// **Why is this bad?** The purpose of the `Debug` trait is to facilitate - /// debugging Rust code. It should not be used in in user-facing output. + /// debugging Rust code. It should not be used in user-facing output. /// /// **Example:** /// ```rust