From be019d1f2443f345b28be58eeec3b06bf3dde1c8 Mon Sep 17 00:00:00 2001 From: Michael Cristina Date: Sat, 2 May 2020 10:38:33 -0500 Subject: [PATCH] Fix typo in godoc help text Signed-off-by: Michael Cristina --- prometheus/promauto/auto.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prometheus/promauto/auto.go b/prometheus/promauto/auto.go index 3c10c85..6f864f6 100644 --- a/prometheus/promauto/auto.go +++ b/prometheus/promauto/auto.go @@ -98,7 +98,7 @@ // requestCount = promauto.With(reg).NewCounterVec( // prometheus.CounterOpts{ // Name: "http_requests_total", -// Help: "Total number of HTTP requests by status code end method.", +// Help: "Total number of HTTP requests by status code and method.", // }, // []string{"code", "method"}, // ) @@ -117,7 +117,7 @@ // requestCount = factory.NewCounterVec( // prometheus.CounterOpts{ // Name: "http_requests_total", -// Help: "Total number of HTTP requests by status code end method.", +// Help: "Total number of HTTP requests by status code and method.", // }, // []string{"code", "method"}, // )