From 41e10b22fa61c6e83cf2228b7efb010ddbac08cd Mon Sep 17 00:00:00 2001 From: Simon Hyll Date: Thu, 11 May 2023 01:21:15 +0200 Subject: [PATCH] chore: fixed grammar and typos (#6937) --- tooling/cli/src/info/env_rust.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tooling/cli/src/info/env_rust.rs b/tooling/cli/src/info/env_rust.rs index dfee30198..40f03ebd5 100644 --- a/tooling/cli/src/info/env_rust.rs +++ b/tooling/cli/src/info/env_rust.rs @@ -31,7 +31,7 @@ pub fn items() -> Vec { .unwrap_or_else(|| { ( format!( - "rustc: {}\nmaybe you don't have rust installed! Visist {}", + "rustc: {}\nMaybe you don't have rust installed! Visit {}", "not installed!".red(), "https://rustup.rs/".cyan() ), @@ -65,7 +65,7 @@ pub fn items() -> Vec { .unwrap_or_else(|| { ( format!( - "Cargo: {}\nmaybe you don't have rust installed! Visit {}", + "Cargo: {}\nMaybe you don't have rust installed! Visit {}", "not installed!".red(), "https://rustup.rs/".cyan() ), @@ -131,7 +131,7 @@ pub fn items() -> Vec { .unwrap_or_else(|| { ( format!( - "Rust toolchain: couldn't be deteceted!\nmaybe you don't have rustup installed? if so, Visit {}", "https://rustup.rs/".cyan() + "Rust toolchain: couldn't be detected!\nMaybe you don't have rustup installed? if so, Visit {}", "https://rustup.rs/".cyan() ), Status::Warning, )