From 1b6ae4348b389bb14515ebcef3b2d8426d36b085 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 30 Jan 2026 21:22:04 -0600 Subject: [PATCH] tweaks --- esphome/core/progmem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/progmem.h b/esphome/core/progmem.h index 7cf172dafc..a7b4a65adc 100644 --- a/esphome/core/progmem.h +++ b/esphome/core/progmem.h @@ -55,7 +55,7 @@ template struct FixedString { /// Example: /// PROGMEM_STRING_TABLE(MyStrings, "foo", "bar", "baz"); /// ProgmemStr str = MyStrings::get_progmem_str(index); // For ArduinoJson -/// const LogString *log_str = MyStrings::get_log_str(index); // For ESP_LOG* +/// const LogString *log_str = MyStrings::get_log_str(index); // For logging /// template struct ProgmemStringTable { static constexpr size_t COUNT = sizeof...(Strs);