From 64c7cf231c4cb01870ec4bb8ab2d65b3ef3067d9 Mon Sep 17 00:00:00 2001 From: Rageking8 Date: Mon, 31 Oct 2022 15:56:48 +0800 Subject: [PATCH] followup for pr 2640 --- cargo-miri/src/phases.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cargo-miri/src/phases.rs b/cargo-miri/src/phases.rs index 2c84165a0f..df36041c75 100644 --- a/cargo-miri/src/phases.rs +++ b/cargo-miri/src/phases.rs @@ -528,7 +528,7 @@ pub fn phase_runner(mut binary_args: impl Iterator, phase: Runner cmd.args(binary_args); // Make sure we use the build-time working directory for interpreting Miri/rustc arguments. - // But then we need to switch to the run-time one, which we instruct Miri do by setting `MIRI_CWD`. + // But then we need to switch to the run-time one, which we instruct Miri to do by setting `MIRI_CWD`. cmd.current_dir(info.current_dir); cmd.env("MIRI_CWD", env::current_dir().unwrap());