From 760dfd77146c9ab717196be59a407d81060d3ee3 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 4 Mar 2026 11:15:02 -1000 Subject: [PATCH] [core] Update comment wording --- esphome/core/application.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/core/application.cpp b/esphome/core/application.cpp index 6b93ce28f0..68043f8ade 100644 --- a/esphome/core/application.cpp +++ b/esphome/core/application.cpp @@ -660,7 +660,8 @@ void Application::yield_with_select_(uint32_t delay_ms) { // until consumed by ulTaskNotifyTake, so notifications received while the task is // running are not lost. The only unhandled case is intentionally undrained sockets // (e.g., API's MAX_MESSAGES_PER_LOOP throttle), where the delay_ms latency before - // re-checking is the desired behavior — waking immediately would defeat the throttle. + // re-checking is the desired behavior — waking immediately would defeat the throttle + // which exists to let other tasks and components run. ulTaskNotifyTake(pdTRUE, pdMS_TO_TICKS(delay_ms)); #elif defined(USE_SOCKET_SELECT_SUPPORT)