From 0a95a7f8d0c7913931bfac19177be6b23fcecac0 Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Fri, 1 Aug 2025 09:10:58 +0200 Subject: [PATCH] Fix typo on `std::string` --- ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_buttons.yaml | 2 +- ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_leds.yaml | 2 +- ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_relays.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_buttons.yaml b/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_buttons.yaml index 8ae40fb..d2be16f 100644 --- a/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_buttons.yaml +++ b/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_buttons.yaml @@ -209,7 +209,7 @@ script: - id: !extend dump_config then: - lambda: |- - std:string gang_count_plural_suffix = id(gang_count) > 1 ? "s" : ""; + std::string gang_count_plural_suffix = id(gang_count) > 1 ? "s" : ""; // Button's actions ESP_LOGCONFIG("core_hw_buttons", "Button%s action%s:", gang_count_plural_suffix.c_str(), diff --git a/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_leds.yaml b/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_leds.yaml index 68fd204..dde1066 100644 --- a/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_leds.yaml +++ b/ESPHome/TX-Ultimate-Easy-ESPHome_core_hw_leds.yaml @@ -448,7 +448,7 @@ script: - id: !extend dump_config then: - lambda: |- - std:string gang_count_plural_suffix = id(gang_count) > 1 ? "s" : ""; + std::string gang_count_plural_suffix = id(gang_count) > 1 ? "s" : ""; // Relay's LEDs modes ESP_LOGCONFIG("core_hw_leds", "Relay%s LEDs mode%s:", gang_count_plural_suffix.c_str(), diff --git a/ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_relays.yaml b/ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_relays.yaml index fe81789..0f019eb 100644 --- a/ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_relays.yaml +++ b/ESPHome/TX-Ultimate-Easy-ESPHome_standard_hw_relays.yaml @@ -703,7 +703,7 @@ script: - id: !extend dump_config then: - lambda: |- - std:string gang_count_plural_suffix = id(gang_count) > 1 ? "s" : ""; + std::string gang_count_plural_suffix = id(gang_count) > 1 ? "s" : ""; // Relay's modes ESP_LOGCONFIG("standard_hw_relays", "Relay%s mode%s:", gang_count_plural_suffix.c_str(),