Merge pull request #745 from mcristina422/patch-1

Fix typo in godoc help text
This commit is contained in:
Björn Rabenstein 2020-05-04 17:30:29 +02:00 committed by GitHub
commit ce2dae2878
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"},
// )