From c51ed6941c1016c327e930580a70492641b24da2 Mon Sep 17 00:00:00 2001 From: Roman Krasavtsev Date: Fri, 4 Jan 2019 21:07:29 +0100 Subject: [PATCH] fix typo Signed-off-by: Roman Krasavtsev --- prometheus/collector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/collector.go b/prometheus/collector.go index c0d70b2..1e83965 100644 --- a/prometheus/collector.go +++ b/prometheus/collector.go @@ -79,7 +79,7 @@ type Collector interface { // of the Describe method. If a Collector sometimes collects no metrics at all // (for example vectors like CounterVec, GaugeVec, etc., which only collect // metrics after a metric with a fully specified label set has been accessed), -// it might even get registered as an unchecked Collecter (cf. the Register +// it might even get registered as an unchecked Collector (cf. the Register // method of the Registerer interface). Hence, only use this shortcut // implementation of Describe if you are certain to fulfill the contract. //