]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_hir_typeck/src/upvar.rs
Rollup merge of #105237 - JohnTitor:issue-79450, r=oli-obk
[rust.git] / compiler / rustc_hir_typeck / src / upvar.rs
index 68f119adc7a7cb6392a1164fcb7c087ed2dda8aa..0f46972019e522f7cd9f312c36958a8e5885d658 100644 (file)
@@ -2168,7 +2168,7 @@ fn determine_place_ancestry_relation<'tcx>(
     place_a: &Place<'tcx>,
     place_b: &Place<'tcx>,
 ) -> PlaceAncestryRelation {
-    // If Place A and Place B, don't start off from the same root variable, they are divergent.
+    // If Place A and Place B don't start off from the same root variable, they are divergent.
     if place_a.base != place_b.base {
         return PlaceAncestryRelation::Divergent;
     }