From c56e99cdba2dc969902005fc495c12f13b9eb2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Christopher=20K=C3=B6hl?= Date: Tue, 27 Sep 2022 17:30:50 +0200 Subject: [PATCH] Fix typo --- compiler/rustc_mir_dataflow/src/value_analysis.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_mir_dataflow/src/value_analysis.rs b/compiler/rustc_mir_dataflow/src/value_analysis.rs index 05285e460eb1..55b1185acd39 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)