Pārlūkot izejas kodu

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

Fabian-Lars 3 gadi atpakaļ
vecāks
revīzija
569fbd8b40
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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()
       );
     };