Fix typo in godoc help text

Signed-off-by: Michael Cristina <mcristina444@gmail.com>
This commit is contained in:
Michael Cristina 2020-05-02 10:38:33 -05:00 committed by Michael Cristina
parent 6edbbd9e56
commit be019d1f24
1 changed files with 2 additions and 2 deletions

View File

@ -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"},
// )