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! {
17
17
/// Checks for `use Trait` where the Trait is only used for its methods and not referenced by a path directly.
18
18
///
19
19
/// ### 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.
22
22
///
23
23
/// ### Example
24
24
/// ```no_run
You can’t perform that action at this time.
0 commit comments