From ed1d45cea1d325d38d285c8dbc53f76d61f6a3e7 Mon Sep 17 00:00:00 2001 From: Etienne Dechamps Date: Sun, 10 Mar 2024 11:02:04 +0000 Subject: [PATCH] Fix OpenMetrics typo: celcius -> celsius See #78 --- examples/ONE/ONE.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ONE/ONE.ino b/examples/ONE/ONE.ino index 8768adc..391673f 100644 --- a/examples/ONE/ONE.ino +++ b/examples/ONE/ONE.ino @@ -1065,7 +1065,7 @@ void webServerMetricsGet(void) { add_metric("temperature", "The ambient temperature as measured by the AirGradient SHT " "sensor, in degrees Celsius", - "gauge", "celcius"); + "gauge", "celsius"); add_metric_point("", String(temp)); } if (hum >= 0) {