Fix typo on std::string

This commit is contained in:
Edward Firmo
2025-08-01 09:10:58 +02:00
parent 6687c5c6a5
commit 0a95a7f8d0
3 changed files with 3 additions and 3 deletions

View File

@@ -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(),

View File

@@ -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(),

View File

@@ -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(),