From 8a959c4e6ae2dea8dffd3b07d87534eac78276f3 Mon Sep 17 00:00:00 2001 From: Andy Piper Date: Tue, 30 Jan 2024 16:33:41 +0000 Subject: [PATCH] fix: correct typos in output Corrects a grammatical issue and a typo in two of the step output messages. --- src/steps/generic.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/steps/generic.rs b/src/steps/generic.rs index 4438c240..515e2a11 100644 --- a/src/steps/generic.rs +++ b/src/steps/generic.rs @@ -510,7 +510,7 @@ pub fn run_pip3_update(ctx: &ExecutionContext) -> Result<()> { print_separator("pip3"); if env::var("VIRTUAL_ENV").is_ok() { - print_warning("This step is will be skipped when running inside a virtual environment"); + print_warning("This step is skipped when running inside a virtual environment"); return Err(SkipStep("Does not run inside a virtual environment".to_string()).into()); } @@ -693,7 +693,7 @@ pub fn run_composer_update(ctx: &ExecutionContext) -> Result<()> { if !composer_home.is_descendant_of(&HOME_DIR) { return Err(SkipStep(format!( - "Composer directory {} isn't a decandent of the user's home directory", + "Composer directory {} isn't a descendant of the user's home directory", composer_home.display() )) .into());