]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_mir_transform/src/sroa.rs
Auto merge of #106952 - petrochenkov:docglob, r=notriddle,GuillaumeGomez
[rust.git] / compiler / rustc_mir_transform / src / sroa.rs
index 3a2bf051516554bc6f6acdf220f42a604a5de656..42124f5a4808d0a3ff074da042b6db40791be5e1 100644 (file)
@@ -215,7 +215,7 @@ struct ReplacementVisitor<'tcx, 'll> {
     replacements: ReplacementMap<'tcx>,
     /// This is used to check that we are not leaving references to replaced locals behind.
     all_dead_locals: BitSet<Local>,
-    /// Pre-computed list of all "new" locals for each "old" local.  This is used to expand storage
+    /// Pre-computed list of all "new" locals for each "old" local. This is used to expand storage
     /// and deinit statement and debuginfo.
     fragments: IndexVec<Local, Vec<(&'tcx [PlaceElem<'tcx>], Local)>>,
 }