From 4dcf15df04072215533a87859cf95b0e7c149cd0 Mon Sep 17 00:00:00 2001 From: Helen Grachtz Date: Tue, 6 May 2025 01:38:31 +0300 Subject: [PATCH] Update lib.rs --- common/lighthouse_metrics/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lighthouse_metrics/src/lib.rs b/common/lighthouse_metrics/src/lib.rs index 1e52b9d..6450e06 100644 --- a/common/lighthouse_metrics/src/lib.rs +++ b/common/lighthouse_metrics/src/lib.rs @@ -5,7 +5,7 @@ //! //! - `Histogram`: used with `start_timer(..)` and `stop_timer(..)` to record durations (e.g., //! block processing time). -//! - `IntCounter`: used to represent an ideally ever-growing, never-shrinking integer (e.g., +//! - `IncCounter`: used to represent an ideally ever-growing, never-shrinking integer (e.g., //! number of block processing requests). //! - `IntGauge`: used to represent an varying integer (e.g., number of attestations per block). //!