From 04b40f8f15a3f36d046ed47381911eac49cc78a2 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 4 Apr 2026 10:32:49 -1000 Subject: [PATCH] Clean up comments in application.h --- esphome/core/application.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/core/application.h b/esphome/core/application.h index 168596fc837..e67ed00b7c2 100644 --- a/esphome/core/application.h +++ b/esphome/core/application.h @@ -556,12 +556,12 @@ class Application { void wake_loop_threadsafe() { esphome::wake_loop_threadsafe(); } #ifdef USE_LWIP_FAST_SELECT - /// Wake from ISR (ESP32/LibreTiny only). Delegates to esphome::wake_loop_isrsafe(). + /// Wake from ISR (ESP32/LibreTiny only). static void wake_loop_isrsafe(int *px) { esphome::wake_loop_isrsafe(px); } #endif #if defined(USE_ESP32) || defined(USE_LIBRETINY) || defined(USE_ESP8266) || defined(USE_RP2040) - /// Wake from any context (ISR, thread, callback). Delegates to esphome::wake_loop_any_context(). + /// Wake from any context (ISR, thread, callback). static void wake_loop_any_context() { esphome::wake_loop_any_context(); } #endif