From: Dániel Buga Date: Sun, 14 Jun 2020 09:07:44 +0000 (+0200) Subject: Fix typo in wildcard_imports X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=8a6f42a9707bbad1dad3f1511f793cd07c723bb7;p=rust.git Fix typo in wildcard_imports --- diff --git a/clippy_lints/src/wildcard_imports.rs b/clippy_lints/src/wildcard_imports.rs index b637253bd02..79f7705e281 100644 --- a/clippy_lints/src/wildcard_imports.rs +++ b/clippy_lints/src/wildcard_imports.rs @@ -36,7 +36,7 @@ declare_clippy_lint! { /// **What it does:** Checks for wildcard imports `use _::*`. /// - /// **Why is this bad?** wildcard imports can polute the namespace. This is especially bad if + /// **Why is this bad?** wildcard imports can pollute the namespace. This is especially bad if /// you try to import something through a wildcard, that already has been imported by name from /// a different source: ///