about summary refs log tree commit diff
path: root/compiler/rustc_mir_dataflow
diff options
context:
space:
mode:
authorpierwill <19642016+pierwill@users.noreply.github.com>2022-07-06 13:26:26 -0500
committerGitHub <noreply@github.com>2022-07-06 13:26:26 -0500
commitdeaa92b34b50bffcd043da6a558338870436db36 (patch)
tree1ff644d1cde49cbcdc9a9a7d3513ea638feeb190 /compiler/rustc_mir_dataflow
parent049308cf8b48e9d67e54d6d0b01c10c79d1efc3a (diff)
downloadrust-deaa92b34b50bffcd043da6a558338870436db36.tar.gz
rust-deaa92b34b50bffcd043da6a558338870436db36.zip
Fix missing word in comment
Diffstat (limited to 'compiler/rustc_mir_dataflow')
-rw-r--r--compiler/rustc_mir_dataflow/src/impls/storage_liveness.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir_dataflow/src/impls/storage_liveness.rs b/compiler/rustc_mir_dataflow/src/impls/storage_liveness.rs
index eae9313b771..f6b5af90a85 100644
--- a/compiler/rustc_mir_dataflow/src/impls/storage_liveness.rs
+++ b/compiler/rustc_mir_dataflow/src/impls/storage_liveness.rs
@@ -153,7 +153,7 @@ impl<'mir, 'tcx> crate::GenKillAnalysis<'tcx> for MaybeRequiresStorage<'mir, 'tc
         _: &mir::Statement<'tcx>,
         loc: Location,
     ) {
-        // If we move from a place then only stops needing storage *after*
+        // If we move from a place then it only stops needing storage *after*
         // that statement.
         self.check_for_move(trans, loc);
     }