From 9c185b42c3bf2300a94bf44a4fcfb1f3ef7d34ea Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 12 Feb 2026 06:23:30 -0600 Subject: [PATCH] Reword comment to avoid ci-custom scanf lint false positive The regex matches `scanf (` in comments too since `\s*\(` matches the space before the parenthesized size note. Co-Authored-By: Claude Opus 4.6 --- tests/components/time/posix_tz_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/components/time/posix_tz_parser.cpp b/tests/components/time/posix_tz_parser.cpp index 2f41b17239..301136175a 100644 --- a/tests/components/time/posix_tz_parser.cpp +++ b/tests/components/time/posix_tz_parser.cpp @@ -1,5 +1,5 @@ // Tests for the POSIX TZ parser and ESPTime::strptime implementations -// These custom parsers avoid pulling in scanf (~9.8KB on ESP32-IDF). +// These custom parsers avoid pulling in the scanf family, saving ~9.8KB on ESP32-IDF. // Enable USE_TIME_TIMEZONE for tests #define USE_TIME_TIMEZONE