diff --git a/src/archive/zip.rs b/src/archive/zip.rs index 237ca11..9766eee 100644 --- a/src/archive/zip.rs +++ b/src/archive/zip.rs @@ -26,7 +26,7 @@ impl Extract for Zip { debug!("Created a temporary zip file"); self.response.copy_to(&mut tmp_zip_file)?; debug!( - "Wrote zipfile successfuly. Now extracting into {}.", + "Wrote zipfile successfully. Now extracting into {}.", path.display() ); diff --git a/src/commands/uninstall.rs b/src/commands/uninstall.rs index f9e42c3..1db3647 100644 --- a/src/commands/uninstall.rs +++ b/src/commands/uninstall.rs @@ -63,12 +63,12 @@ impl Command for Uninstall { debug!("Removing Node version from {:?}", root_path); std::fs::remove_dir_all(root_path).context(CantDeleteNodeVersion)?; - outln!(config#Info, "Node version {} was removed successfuly", version.v_str().cyan()); + outln!(config#Info, "Node version {} was removed successfully", version.v_str().cyan()); for alias in matching_aliases { debug!("Removing alias from {:?}", alias.path()); remove_symlink_dir(alias.path()).context(CantDeleteSymlink)?; - outln!(config#Info, "Alias {} was removed successfuly", alias.name().cyan()); + outln!(config#Info, "Alias {} was removed successfully", alias.name().cyan()); } Ok(())