From af823636c60b99ec6344fbf514f0c3370f1a8f6b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 12 Jul 2025 16:56:51 +0200 Subject: [PATCH] drop space from tag (should still be cspell compatible) --- .github/scripts/codespell.sh | 2 +- lib/vtls/cipher_suite.c | 2 +- tests/libtest/lib557.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/codespell.sh b/.github/scripts/codespell.sh index a81bc77c9c..0bede46e16 100755 --- a/.github/scripts/codespell.sh +++ b/.github/scripts/codespell.sh @@ -17,6 +17,6 @@ codespell \ --skip '*/tool_hugehelp.c' \ --skip 'packages/*' \ --skip '*/test*' \ - --ignore-regex '.*spellchecker: disable' \ + --ignore-regex '.*spellchecker:disable' \ --ignore-words '.github/scripts/codespell-ignore.txt' \ $(git ls-files) diff --git a/lib/vtls/cipher_suite.c b/lib/vtls/cipher_suite.c index 849cb3afe9..80a124599a 100644 --- a/lib/vtls/cipher_suite.c +++ b/lib/vtls/cipher_suite.c @@ -70,7 +70,7 @@ static const char *cs_txt = "ECDH" "\0" "ECDHE" "\0" "ECDSA" "\0" - "EDE" "\0" /* spellchecker: disable */ + "EDE" "\0" /* spellchecker:disable */ "GCM" "\0" "MD5" "\0" "NULL" "\0" diff --git a/tests/libtest/lib557.c b/tests/libtest/lib557.c index bfd6ab3be3..b38a9df551 100644 --- a/tests/libtest/lib557.c +++ b/tests/libtest/lib557.c @@ -1146,7 +1146,7 @@ static int test_string_formatting(void) errors += string_check(buf, "09foo"); curl_msnprintf(buf, sizeof(buf), "%*.*s", 5, 2, "foo"); - errors += string_check(buf, " fo"); /* spellchecker: disable */ + errors += string_check(buf, " fo"); /* spellchecker:disable */ curl_msnprintf(buf, sizeof(buf), "%*.*s", 2, 5, "foo"); errors += string_check(buf, "foo");