@@ -24,7 +24,7 @@ warning: attempt to add with overflow
2424
2525## dead-code
2626
27- This lint detects detect unused, unexported items. Some
27+ This lint detects unused, unexported items. Some
2828example code that triggers this lint:
2929
3030``` rust
@@ -44,7 +44,7 @@ warning: function is never used: `foo`
4444
4545## deprecated
4646
47- This lint detects detects use of deprecated items. Some
47+ This lint detects use of deprecated items. Some
4848example code that triggers this lint:
4949
5050``` rust
@@ -119,7 +119,7 @@ warning: found struct without foreign-function-safe representation annotation in
119119
120120## late-bound-lifetime-arguments
121121
122- This lint detects detects generic lifetime arguments in path segments with
122+ This lint detects generic lifetime arguments in path segments with
123123late bound lifetime parameters. Some example code that triggers this lint:
124124
125125``` rust
@@ -381,7 +381,7 @@ extern crate macro_crate_test;
381381
382382## private-in-public
383383
384- This lint detects detect private items in public interfaces not caught by the old implementation. Some
384+ This lint detects private items in public interfaces not caught by the old implementation. Some
385385example code that triggers this lint:
386386
387387``` rust,ignore
@@ -659,7 +659,7 @@ warning: unknown lint: `not_a_real_lint`
659659
660660## unreachable-code
661661
662- This lint detects detects unreachable code paths. Some example code that
662+ This lint detects unreachable code paths. Some example code that
663663triggers this lint:
664664
665665``` rust,no_run
@@ -681,7 +681,7 @@ warning: unreachable statement
681681
682682## unreachable-patterns
683683
684- This lint detects detects unreachable patterns. Some
684+ This lint detects unreachable patterns. Some
685685example code that triggers this lint:
686686
687687``` rust
@@ -716,11 +716,11 @@ annotations now.
716716
717717## unused-allocation
718718
719- This lint detects detects unnecessary allocations that can be eliminated.
719+ This lint detects unnecessary allocations that can be eliminated.
720720
721721## unused-assignments
722722
723- This lint detects detect assignments that will never be read. Some
723+ This lint detects assignments that will never be read. Some
724724example code that triggers this lint:
725725
726726``` rust
@@ -741,7 +741,7 @@ warning: value assigned to `x` is never read
741741
742742## unused-attributes
743743
744- This lint detects detects attributes that were not used by the compiler. Some
744+ This lint detects attributes that were not used by the compiler. Some
745745example code that triggers this lint:
746746
747747``` rust
@@ -785,7 +785,7 @@ warning: comparison is useless due to type limits
785785
786786## unused-doc-comment
787787
788- This lint detects detects doc comments that aren't used by rustdoc. Some
788+ This lint detects doc comments that aren't used by rustdoc. Some
789789example code that triggers this lint:
790790
791791``` rust
@@ -831,7 +831,7 @@ warning: unused import: `std::collections::HashMap`
831831
832832## unused-macros
833833
834- This lint detects detects macros that were not used. Some example code that
834+ This lint detects macros that were not used. Some example code that
835835triggers this lint:
836836
837837``` rust
@@ -884,7 +884,7 @@ warning: unused `std::result::Result` that must be used
884884
885885## unused-mut
886886
887- This lint detects detect mut variables which don't need to be mutable. Some
887+ This lint detects mut variables which don't need to be mutable. Some
888888example code that triggers this lint:
889889
890890``` rust
@@ -946,7 +946,7 @@ warning: unnecessary `unsafe` block
946946
947947## unused-variables
948948
949- This lint detects detect variables which are not used in any way. Some
949+ This lint detects variables which are not used in any way. Some
950950example code that triggers this lint:
951951
952952``` rust
0 commit comments