From 390e874a3f789496854d393f251f595abe9d96a3 Mon Sep 17 00:00:00 2001 From: beorn7 Date: Mon, 15 Aug 2016 15:54:18 +0200 Subject: [PATCH] Fix doc comment typo --- prometheus/promhttp/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/promhttp/http.go b/prometheus/promhttp/http.go index 3116d2f..b6dd5a2 100644 --- a/prometheus/promhttp/http.go +++ b/prometheus/promhttp/http.go @@ -76,7 +76,7 @@ func Handler() http.Handler { } // HandlerFor returns an http.Handler for the provided Gatherer. The behavior -// ef the Handler is defined by the provided HandlerOpts. +// of the Handler is defined by the provided HandlerOpts. func HandlerFor(reg prometheus.Gatherer, opts HandlerOpts) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { mfs, err := reg.Gather()