From 8fa9b2a04283634a5f13a8f5aca8a4d62ef96b5b Mon Sep 17 00:00:00 2001 From: Pavel Sapezhka Date: Fri, 24 Feb 2023 12:06:56 +0200 Subject: [PATCH] Fix typo Signed-off-by: Pavel Sapezhka --- prometheus_client/gc_collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prometheus_client/gc_collector.py b/prometheus_client/gc_collector.py index 4e80fa09..06e52dfc 100644 --- a/prometheus_client/gc_collector.py +++ b/prometheus_client/gc_collector.py @@ -22,7 +22,7 @@ def collect(self) -> Iterable[Metric]: ) uncollectable = CounterMetricFamily( 'python_gc_objects_uncollectable', - 'Uncollectable object found during GC', + 'Uncollectable objects found during GC', labels=['generation'], )