Fix typo in godoc help text
Signed-off-by: Michael Cristina <mcristina444@gmail.com>
This commit is contained in:
parent
6edbbd9e56
commit
be019d1f24
|
@ -98,7 +98,7 @@
|
||||||
// requestCount = promauto.With(reg).NewCounterVec(
|
// requestCount = promauto.With(reg).NewCounterVec(
|
||||||
// prometheus.CounterOpts{
|
// prometheus.CounterOpts{
|
||||||
// Name: "http_requests_total",
|
// 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"},
|
// []string{"code", "method"},
|
||||||
// )
|
// )
|
||||||
|
@ -117,7 +117,7 @@
|
||||||
// requestCount = factory.NewCounterVec(
|
// requestCount = factory.NewCounterVec(
|
||||||
// prometheus.CounterOpts{
|
// prometheus.CounterOpts{
|
||||||
// Name: "http_requests_total",
|
// 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"},
|
// []string{"code", "method"},
|
||||||
// )
|
// )
|
||||||
|
|
Loading…
Reference in New Issue