File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ declare_clippy_lint! {
1717 /// Checks for `use Trait` where the Trait is only used for its methods and not referenced by a path directly.
1818 ///
1919 /// ### Why is this bad?
20- /// Traits imported that aren't used directly can be imported anonymously `use Trait as _`.
21- /// It is more explicit, avoids polutting the current scope with unused names and can be useful to show which imports are required for traits.
20+ /// Traits imported that aren't used directly can be imported anonymously with `use Trait as _`.
21+ /// It is more explicit, avoids polluting the current scope with unused names and can be useful to show which imports are required for traits.
2222 ///
2323 /// ### Example
2424 /// ```no_run
You can’t perform that action at this time.
0 commit comments