Skip to content

Commit

Permalink
fix: correct typos in output (#677)
Browse files Browse the repository at this point in the history
Corrects a grammatical issue and a typo in two of the step output messages.
  • Loading branch information
andypiper authored Jan 31, 2024
1 parent b708300 commit 3c97006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/steps/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}

Expand Down Expand Up @@ -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());
Expand Down

0 comments on commit 3c97006

Please sign in to comment.