From 3fe4eec37a7fce551b6f3c96e67b70151bc468e2 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Tue, 6 Aug 2019 20:52:09 +0200 Subject: [PATCH] mention that we get the toolchain right --- src/bin/cargo-miri.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/cargo-miri.rs b/src/bin/cargo-miri.rs index 2202465709d5..4da039a42d9e 100644 --- a/src/bin/cargo-miri.rs +++ b/src/bin/cargo-miri.rs @@ -268,7 +268,7 @@ fn setup(ask_user: bool) { let src = Path::new(sysroot.trim_end_matches('\n')).join("lib").join("rustlib").join("src"); if !src.exists() { if ask_user { - ask("It seems you do not have the rust-src component installed. I will run `rustup component add rust-src`. Proceed?"); + ask("It seems you do not have the rust-src component installed. I will run `rustup component add rust-src` for the selected toolchain. Proceed?"); } else { println!("Installing rust-src component: `rustup component add rust-src`"); }