]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo in wildcard_imports
authorDániel Buga <bugadani@gmail.com>
Sun, 14 Jun 2020 09:07:44 +0000 (11:07 +0200)
committerGitHub <noreply@github.com>
Sun, 14 Jun 2020 09:07:44 +0000 (11:07 +0200)
clippy_lints/src/wildcard_imports.rs

index b637253bd0264666418adde8d5c4c86f6f55beee..79f7705e281e542806d081fdae55c5e6549220e0 100644 (file)
@@ -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:
     ///