about summary refs log tree commit diff
path: root/compiler/rustc_resolve/src
diff options
context:
space:
mode:
authorFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 17:27:18 +0200
committerFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 17:27:18 +0200
commit2396fad0950980cd3bf53bc825cdfa79ec7fd85f (patch)
tree2d408c10f8e8430d936cc3c136b8b8189b51a37d /compiler/rustc_resolve/src
parentb08b92eb42e4f19d95f99da854cf33008a7687b2 (diff)
downloadrust-2396fad0950980cd3bf53bc825cdfa79ec7fd85f.tar.gz
rust-2396fad0950980cd3bf53bc825cdfa79ec7fd85f.zip
Fix more “a”/“an” typos
Diffstat (limited to 'compiler/rustc_resolve/src')
-rw-r--r--compiler/rustc_resolve/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs
index 5df2f22b789..2e6af822043 100644
--- a/compiler/rustc_resolve/src/lib.rs
+++ b/compiler/rustc_resolve/src/lib.rs
@@ -3161,7 +3161,7 @@ impl<'a> Resolver<'a> {
         }
     }
 
-    /// This function adds a suggestion to remove a unnecessary binding from an import that is
+    /// This function adds a suggestion to remove an unnecessary binding from an import that is
     /// nested. In the following example, this function will be invoked to remove the `a` binding
     /// in the second use statement:
     ///