Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zero committed Nov 2, 2022
1 parent 8c4d53e commit 6f68b15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ fn install(args: InstallOpts) -> Result<()> {
bail!("{} Failed to save config {:#}", emoji::ERROR, e);
}

info!("{} Installation suscesfully completed!", emoji::CHECK);
info!("{} Installation successfully completed!", emoji::CHECK);
warn!(
"{} Please, source the export file, as state above, to properly setup the environment!",
emoji::WARN
Expand Down Expand Up @@ -298,7 +298,7 @@ fn uninstall(args: UninstallOpts) -> Result<()> {
let conf_file = conf_dirs.config_dir().join("espup.toml");
remove_file(conf_file)?;

info!("{} Uninstallation suscesfully completed!", emoji::CHECK);
info!("{} Uninstallation successfully completed!", emoji::CHECK);
Ok(())
}

Expand Down Expand Up @@ -344,7 +344,7 @@ fn update(args: UpdateOpts) -> Result<()> {
bail!("{} Failed to save config {:#}", emoji::ERROR, e);
}

info!("{} Update suscesfully completed!", emoji::CHECK);
info!("{} Update successfully completed!", emoji::CHECK);
Ok(())
}

Expand Down

0 comments on commit 6f68b15

Please sign in to comment.