From 066ab784105c812d3f26c93b3067b593fc961441 Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Thu, 30 Apr 2015 18:51:33 +0200 Subject: [PATCH] Correct typo in Counter.Set() docstring. --- prometheus/counter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/counter.go b/prometheus/counter.go index f8d633f..a2952d1 100644 --- a/prometheus/counter.go +++ b/prometheus/counter.go @@ -33,7 +33,7 @@ type Counter interface { // Set is used to set the Counter to an arbitrary value. It is only used // if you have to transfer a value from an external counter into this - // Prometheus metrics. Do not use it for regular handling of a + // Prometheus metric. Do not use it for regular handling of a // Prometheus counter (as it can be used to break the contract of // monotonically increasing values). Set(float64)