From 49dd23d2a117a909ef75bd330bf79d70dd7887db Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 16 Mar 2026 12:01:51 -1000 Subject: [PATCH] Fix doc comment: LWIP not kernel --- esphome/components/api/api_overflow_buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/api/api_overflow_buffer.h b/esphome/components/api/api_overflow_buffer.h index b0f79e1e9a..bfd7acb007 100644 --- a/esphome/components/api/api_overflow_buffer.h +++ b/esphome/components/api/api_overflow_buffer.h @@ -13,7 +13,7 @@ namespace esphome::api { /// Circular queue of heap-allocated byte buffers used as a TCP send backlog. /// /// Under normal operation this buffer is **never used** — data goes straight -/// from the frame helper to the socket. It only fills when the kernel TCP +/// from the frame helper to the socket. It only fills when the LWIP TCP /// send buffer is full (slow client, congested network, heavy logging). /// The queue drains automatically on subsequent write/loop calls once the /// socket becomes writable again.