Merge pull request #36 from lu-zero/patch-1

Fix a typo
This commit is contained in:
Sergio Gasquez Arcos 2022-11-02 15:38:02 +01:00 committed by GitHub
commit a63c92073f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
@ -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(())
}
@ -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(())
}