From 21bf561f0c2deb90635cbb1528ba0777ffa425e8 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 2 Mar 2026 15:56:17 -1000 Subject: [PATCH] one more --- esphome/core/helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/helpers.h b/esphome/core/helpers.h index 10d75e570e..9ea0c77120 100644 --- a/esphome/core/helpers.h +++ b/esphome/core/helpers.h @@ -513,7 +513,7 @@ template class SmallBufferWithHeapFallb /// Compute 10^exp using iterative multiplication/division. /// Avoids pulling in powf/__ieee754_powf (~2.3KB flash) for small integer exponents. // NOLINT -/// Matches powf(10, exp) for the int8_t exponent range used by sensor accuracy_decimals. +/// Matches powf(10, exp) for the int8_t exponent range used by sensor accuracy_decimals. // NOLINT inline float pow10_int(int8_t exp) { float result = 1.0f; if (exp >= 0) {