diff --git a/compiler/rustc_mir_dataflow/src/value_analysis.rs b/compiler/rustc_mir_dataflow/src/value_analysis.rs index 05285e460eb..55b1185acd3 100644 --- a/compiler/rustc_mir_dataflow/src/value_analysis.rs +++ b/compiler/rustc_mir_dataflow/src/value_analysis.rs @@ -174,7 +174,7 @@ pub trait ValueAnalysis<'tcx> { ValueOrPlace::Value(self.handle_constant(constant, state)) } Operand::Copy(place) | Operand::Move(place) => { - // Do want want to handle moves different? Could flood place with bottom. + // Do we want to handle moves differently? Could flood place with bottom. self.map() .find(place.as_ref()) .map(ValueOrPlace::Place)