From 8085682d49cd72492555fe6ec4a0c893f82fbe21 Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Wed, 28 Oct 2020 21:19:50 -0400 Subject: [PATCH] fix broken intra doc links --- metrics/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index 71f02b2..f38efde 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -10,9 +10,9 @@ //! ## Emission //! Metrics are emitted by utilizing the registration or emission macros. There is a macro for //! registering and emitting each fundamental metric type: -//! - [`register_counter!`] and [`increment_counter!`] for counters -//! - [`register_gauge!`] and [`update_gauge!`] for gauges -//! - [`register_histogram!`] and [`record_histogram!`] for histograms +//! - [`register_counter!`], [`increment!`], and [`counter!`] for counters +//! - [`register_gauge!`] and [`gauge!`] for gauges +//! - [`register_histogram!`] and [`histogram!`] for histograms //! //! There is also an [`increment!`] macro, which is shorthand for incrementing a counter by one. //!