From b0bcec8f2e395069a0f792491ea31ed520ab7142 Mon Sep 17 00:00:00 2001 From: Andrey Yurchenkov Date: Tue, 13 Aug 2019 13:43:39 +0300 Subject: [PATCH] Fix typo in documentation Signed-off-by: Andrey Yurchenkov --- prometheus/registry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus/registry.go b/prometheus/registry.go index 6c32516..f4e9a99 100644 --- a/prometheus/registry.go +++ b/prometheus/registry.go @@ -74,7 +74,7 @@ func NewRegistry() *Registry { // NewPedanticRegistry returns a registry that checks during collection if each // collected Metric is consistent with its reported Desc, and if the Desc has // actually been registered with the registry. Unchecked Collectors (those whose -// Describe methed does not yield any descriptors) are excluded from the check. +// Describe method does not yield any descriptors) are excluded from the check. // // Usually, a Registry will be happy as long as the union of all collected // Metrics is consistent and valid even if some metrics are not consistent with