From 000ceb266b84c4d1c71f9ac92e937a19632d30d2 Mon Sep 17 00:00:00 2001 From: beorn7 Date: Tue, 18 Dec 2018 16:30:34 +0100 Subject: [PATCH] Fix doc comment typo Signed-off-by: beorn7 --- prometheus/registry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/registry.go b/prometheus/registry.go index b5e70b9..f2fb67a 100644 --- a/prometheus/registry.go +++ b/prometheus/registry.go @@ -680,7 +680,7 @@ func processMetric( // Gatherers is a slice of Gatherer instances that implements the Gatherer // interface itself. Its Gather method calls Gather on all Gatherers in the // slice in order and returns the merged results. Errors returned from the -// Gather calles are all returned in a flattened MultiError. Duplicate and +// Gather calls are all returned in a flattened MultiError. Duplicate and // inconsistent Metrics are skipped (first occurrence in slice order wins) and // reported in the returned error. //