From abd3cd54bc8bc84dfb4734bbd2fb61c4b8080122 Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Sat, 25 Jan 2025 19:26:27 +0000 Subject: [PATCH] GHA CI: Bump numerous hook revs PR #22193. --- .pre-commit-config.yaml | 4 ++-- src/app/application.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 991f054cde06..fbf101d28eb2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -69,7 +69,7 @@ repos: - ts - repo: https://github.com/codespell-project/codespell.git - rev: v2.3.0 + rev: v2.4.0 hooks: - id: codespell name: Check spelling (codespell) @@ -88,7 +88,7 @@ repos: - ts - repo: https://github.com/crate-ci/typos.git - rev: v1.28.4 + rev: v1.29.4 hooks: - id: typos name: Check spelling (typos) diff --git a/src/app/application.cpp b/src/app/application.cpp index 1d10731ed44a..a415950d0fe8 100644 --- a/src/app/application.cpp +++ b/src/app/application.cpp @@ -579,7 +579,7 @@ void Application::runExternalProgram(const QString &programTemplate, const BitTo const QString logMsg = tr("Running external program. Torrent: \"%1\". Command: `%2`"); const QString logMsgError = tr("Failed to run external program. Torrent: \"%1\". Command: `%2`"); - // The processing sequenece is different for Windows and other OS, this is intentional + // The processing sequence is different for Windows and other OS, this is intentional #if defined(Q_OS_WIN) const QString program = replaceVariables(programTemplate); const std::wstring programWStr = program.toStdWString();