From 87cb7542cd1e93ddf12baa2f3a859763a1ca584e Mon Sep 17 00:00:00 2001 From: Rick van Drongelen Date: Thu, 3 Jul 2025 16:29:23 +0200 Subject: [PATCH] lint fix --- server/prometheus.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/prometheus.js b/server/prometheus.js index a9723f155..70daf8ce7 100644 --- a/server/prometheus.js +++ b/server/prometheus.js @@ -191,9 +191,9 @@ class Prometheus { /** * Sort the tags alphabetically, case-insensitive. - * @param a {string} - * @param b {string} - * @returns {number} + * @param {string} a The first tag to compare + * @param {string} b The second tag to compare + * @returns {number} The alphabetical order number */ sortTags(a, b) { const aLowerCase = a.toLowerCase();