Explorar o código

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

Fabian-Lars %!s(int64=3) %!d(string=hai) anos
pai
achega
569fbd8b40
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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()
       );
     };