From 5c95f011e434299c690e092040f196e7ce5e166f Mon Sep 17 00:00:00 2001 From: samuelbles07 Date: Fri, 12 Sep 2025 14:33:36 +0700 Subject: [PATCH] Fix typo in openmetrics --- examples/OneOpenAir/OpenMetrics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/OneOpenAir/OpenMetrics.cpp b/examples/OneOpenAir/OpenMetrics.cpp index 12a6a2a..b4b2bee 100644 --- a/examples/OneOpenAir/OpenMetrics.cpp +++ b/examples/OneOpenAir/OpenMetrics.cpp @@ -202,14 +202,14 @@ String OpenMetrics::getPayload(void) { } if (utils::isValidNOx(nox)) { add_metric("nox_index", - "The processed Nitrous Oxide (NOx) index as measured by the " + "The processed Nitrogen Oxide (NOx) index as measured by the " "AirGradient SGP sensor", "gauge"); add_metric_point("", String(nox)); } if (utils::isValidNOx(noxRaw)) { add_metric("nox_raw", - "The raw input value to the Nitrous Oxide (NOx) index as " + "The raw input value to the Nitrogen Oxide (NOx) index as " "measured by the AirGradient SGP sensor", "gauge"); add_metric_point("", String(noxRaw));