From 20a1c8144599204aaaca1e63c770071ce91b7847 Mon Sep 17 00:00:00 2001 From: Lorenzo Zabot Date: Mon, 24 Jun 2024 12:18:46 +0200 Subject: [PATCH] Add period in warning while checking existing rust installations --- src/cli/self_update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/self_update.rs b/src/cli/self_update.rs index 6fd3b5565d..9607818359 100644 --- a/src/cli/self_update.rs +++ b/src/cli/self_update.rs @@ -637,7 +637,7 @@ fn check_existence_of_rustc_or_cargo_in_path(no_prompt: bool, process: &Process) warn!("it looks like you have an existing installation of Rust at:"); warn!("{}", path); warn!("It is recommended that rustup be the primary Rust installation."); - warn!("Otherwise you may have confusion unless you are careful with your PATH"); + warn!("Otherwise you may have confusion unless you are careful with your PATH."); warn!("If you are sure that you want both rustup and your already installed Rust"); warn!("then please reply `y' or `yes' or set RUSTUP_INIT_SKIP_PATH_CHECK to yes"); warn!("or pass `-y' to ignore all ignorable checks.");