Ver código fonte

fix(cli): typo in update check notification (#4223)

Fabian-Lars 3 anos atrás
pai
commit
569fbd8b40
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      tooling/cli/src/dev.rs

+ 1 - 1
tooling/cli/src/dev.rs

@@ -296,7 +296,7 @@ fn check_for_updates() -> Result<()> {
     let upstream = semver::Version::parse(&upstream_version)?;
     if current < upstream {
       println!(
-        "🚀 A new version of Tauri CLI is avaliable! [{}]",
+        "🚀 A new version of Tauri CLI is available! [{}]",
         upstream.to_string()
       );
     };