From 8299656375a4ef3e292336d8aba6126af1d82782 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 13 Dec 2025 10:32:39 -0600 Subject: [PATCH] Update esphome/components/sgp4x/sgp4x.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- esphome/components/sgp4x/sgp4x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/sgp4x/sgp4x.cpp b/esphome/components/sgp4x/sgp4x.cpp index fa984ba418..4854b9ec43 100644 --- a/esphome/components/sgp4x/sgp4x.cpp +++ b/esphome/components/sgp4x/sgp4x.cpp @@ -59,7 +59,7 @@ void SGP4xComponent::setup() { if (this->store_baseline_) { // 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);