Просмотр исходного кода

pre-commit: version bump `typos` hook + fix found typo

Alex Turbov 1 месяц назад
Родитель
Сommit
69691f5bb2
3 измененных файлов с 3 добавлено и 3 удалено
  1. 1 1
      .gitlab/ci/docker/fedora43/build_rust.sh
  2. 1 1
      .pre-commit-config.yaml
  3. 1 1
      Source/CTest/cmProcess.cxx

+ 1 - 1
.gitlab/ci/docker/fedora43/build_rust.sh

@@ -2,7 +2,7 @@
 
 set -e
 
-typos_version=1.38.1
+typos_version=1.44.0
 cargo install --root /usr/local --version "$typos_version" typos-cli
 
 strip /usr/local/bin/typos

+ 1 - 1
.pre-commit-config.yaml

@@ -113,7 +113,7 @@ repos:
 
     # NOTE See BUG https://github.com/crate-ci/typos/issues/390
   - repo: https://github.com/adhtruong/mirrors-typos
-    rev: v1.39.2
+    rev: v1.44.0
     hooks:
       - id: typos
         # NOTE Override hook's default args to prevent automatic

+ 1 - 1
Source/CTest/cmProcess.cxx

@@ -360,7 +360,7 @@ void cmProcess::OnExit(int64_t exit_status, int term_signal)
 void cmProcess::Finish()
 {
   this->TotalTime = std::chrono::steady_clock::now() - this->StartTime;
-  // Because of a processor clock scew the runtime may become slightly
+  // Because of a processor clock skew the runtime may become slightly
   // negative. If someone changed the system clock while the process was
   // running this may be even more. Make sure not to report a negative
   // duration here.