From c349c2ad0b84a5a8065762327f0cd4d654403387 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 26 Jul 2026 10:49:52 +0200 Subject: [PATCH] fix typo --- src/web/WebCommandService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/WebCommandService.cpp b/src/web/WebCommandService.cpp index d123ac591..3010f1060 100644 --- a/src/web/WebCommandService.cpp +++ b/src/web/WebCommandService.cpp @@ -373,7 +373,7 @@ std::string WebCommandService::get_metrics_prometheus() { if (ci.name[0] == '\0') { continue; } - result += (std::string) "# HELP emsesp_cmd_" + ci.name + " " + ci.name + ", readabe, writable, visible\n"; + result += (std::string) "# HELP emsesp_cmd_" + ci.name + " " + ci.name + ", readable, writable, visible\n"; result += (std::string) "# TYPE emsesp_cmd_" + ci.name + " gauge\n"; result += (std::string) "emsesp_cmd_" + ci.name + " 1\n"; }