about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Moelius <35515885+smoelius@users.noreply.github.com>2023-01-22 07:38:02 -0500
committerGitHub <noreply@github.com>2023-01-22 07:38:02 -0500
commit12a72f0329476aa57a465c4fc3043ee40028b325 (patch)
treefaa5f6b15c6a13988d1a09d5305586f5af174e4d
parent940d00f2f64a0d1e11a546c13bd02ae58d699417 (diff)
downloadrust-12a72f0329476aa57a465c4fc3043ee40028b325.tar.gz
rust-12a72f0329476aa57a465c4fc3043ee40028b325.zip
Update universal_regions.rs
-rw-r--r--compiler/rustc_borrowck/src/universal_regions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_borrowck/src/universal_regions.rs b/compiler/rustc_borrowck/src/universal_regions.rs
index 5b4d99682d9..8bff66f8d5c 100644
--- a/compiler/rustc_borrowck/src/universal_regions.rs
+++ b/compiler/rustc_borrowck/src/universal_regions.rs
@@ -162,7 +162,7 @@ struct UniversalRegionIndices<'tcx> {
     /// `ty::Region` to the internal `RegionVid` we are using. This is
     /// used because trait matching and type-checking will feed us
     /// region constraints that reference those regions and we need to
-    /// be able to map them our internal `RegionVid`. This is
+    /// be able to map them to our internal `RegionVid`. This is
     /// basically equivalent to an `InternalSubsts`, except that it also
     /// contains an entry for `ReStatic` -- it might be nice to just
     /// use a substs, and then handle `ReStatic` another way.