From 6198618044b202649af43a6a280a61237771f123 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 13 Dec 2025 10:32:25 -0600 Subject: [PATCH] Update esphome/components/sen5x/sen5x.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- esphome/components/sen5x/sen5x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/sen5x/sen5x.cpp b/esphome/components/sen5x/sen5x.cpp index 82145d0b22..f2b99dc9bf 100644 --- a/esphome/components/sen5x/sen5x.cpp +++ b/esphome/components/sen5x/sen5x.cpp @@ -157,7 +157,7 @@ void SEN5XComponent::setup() { encode_uint24(this->serial_number_[0], this->serial_number_[1], this->serial_number_[2]); // 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()) ^ combined_serial; this->pref_ = global_preferences->make_preference(hash, true);