浏览代码

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

Fabian-Lars 3 年之前
父节点
当前提交
569fbd8b40
共有 1 个文件被更改,包括 1 次插入1 次删除
  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()
       );
     };