about summary refs log tree commit diff
path: root/compiler/rustc_resolve
diff options
context:
space:
mode:
authorFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 16:20:58 +0200
committerFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-08-22 16:35:29 +0200
commitbe9d2699ca3581448097ec446fecb45ec171975e (patch)
tree522778fd0a90cacd44bcf1161ce61dd143b4ef84 /compiler/rustc_resolve
parentbf88b113eab9c36e63f8461f5849138cb60d810a (diff)
downloadrust-be9d2699ca3581448097ec446fecb45ec171975e.tar.gz
rust-be9d2699ca3581448097ec446fecb45ec171975e.zip
Fix more “a”/“an” typos
Diffstat (limited to 'compiler/rustc_resolve')
-rw-r--r--compiler/rustc_resolve/src/late/diagnostics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/late/diagnostics.rs b/compiler/rustc_resolve/src/late/diagnostics.rs
index a602a58e517..9d923599db7 100644
--- a/compiler/rustc_resolve/src/late/diagnostics.rs
+++ b/compiler/rustc_resolve/src/late/diagnostics.rs
@@ -1826,7 +1826,7 @@ impl<'tcx> LifetimeContext<'_, 'tcx> {
         err.emit();
     }
 
-    // FIXME(const_generics): This patches over a ICE caused by non-'static lifetimes in const
+    // FIXME(const_generics): This patches over an ICE caused by non-'static lifetimes in const
     // generics. We are disallowing this until we can decide on how we want to handle non-'static
     // lifetimes in const generics. See issue #74052 for discussion.
     crate fn emit_non_static_lt_in_const_generic_error(&self, lifetime_ref: &hir::Lifetime) {