From 70c3c48ebad0085c2444a6ce59770b9ebb18955d Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 6 Mar 2026 07:25:30 -1000 Subject: [PATCH] Update esphome/core/entity_base.h Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- esphome/core/entity_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/entity_base.h b/esphome/core/entity_base.h index 91fb8eb5b27..20eb68b67a7 100644 --- a/esphome/core/entity_base.h +++ b/esphome/core/entity_base.h @@ -119,7 +119,7 @@ class EntityBase { } // Get this entity's device class into a stack buffer. - // On ESP32: returns pointer to PROGMEM string directly (buffer unused). + // On non-ESP8266: returns pointer to PROGMEM string directly (buffer unused). // On ESP8266: copies from PROGMEM to buffer, returns buffer pointer. const char *get_device_class_to(std::span buffer) const;