From 184ac0c1e7620bb99dd11f07dfd348b09e06b78c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 13 Dec 2025 10:32:33 -0600 Subject: [PATCH] Update esphome/components/sgp30/sgp30.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- esphome/components/sgp30/sgp30.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/sgp30/sgp30.cpp b/esphome/components/sgp30/sgp30.cpp index 0645d2faf9..d70c47a938 100644 --- a/esphome/components/sgp30/sgp30.cpp +++ b/esphome/components/sgp30/sgp30.cpp @@ -74,7 +74,7 @@ void SGP30Component::setup() { // Hash with build time and serial number // This ensures the baseline storage is cleared after OTA - // Serial numbers are unique to each sensor, so mulitple sensors can be used without conflict + // Serial numbers are unique to each sensor, so multiple sensors can be used without conflict uint32_t hash = static_cast(App.get_build_time()) ^ static_cast(this->serial_number_); this->pref_ = global_preferences->make_preference(hash, true);