]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_mir_transform/src/add_retag.rs
Rollup merge of #107724 - klensy:imports, r=Mark-Simulacrum
[rust.git] / compiler / rustc_mir_transform / src / add_retag.rs
index 3d22035f0785ed57509c86c251355156d92d3665..7d2146214c6dc2128040b12ab248e32272d1b016 100644 (file)
@@ -120,7 +120,7 @@ fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
         // PART 3
         // Add retag after assignments where data "enters" this function: the RHS is behind a deref and the LHS is not.
         for block_data in basic_blocks {
-            // We want to insert statements as we iterate.  To this end, we
+            // We want to insert statements as we iterate. To this end, we
             // iterate backwards using indices.
             for i in (0..block_data.statements.len()).rev() {
                 let (retag_kind, place) = match block_data.statements[i].kind {