소스 검색

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()
       );
     };