From f0c4c478a2030df8b79806c2df68b96bea4a3914 Mon Sep 17 00:00:00 2001 From: Alexey Palazhchenko Date: Wed, 28 Jun 2017 15:40:03 +0300 Subject: [PATCH] Minor documentation fix --- prometheus/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/doc.go b/prometheus/doc.go index 278969d..e10ba54 100644 --- a/prometheus/doc.go +++ b/prometheus/doc.go @@ -60,7 +60,7 @@ // // The Handler function provides a default handler to expose metrics // // via an HTTP server. "/metrics" is the usual endpoint for that. // http.Handle("/metrics", promhttp.Handler()) -// log.Fatal(http.ListenAndServe(":8080", nil)) +// log.Fatal(http.ListenAndServe(":8080", nil)) // } // //