From a67578463407f26cc6410fd6c6e8bc380922bc98 Mon Sep 17 00:00:00 2001 From: Linda Siemons Date: Sun, 12 Jan 2025 03:24:31 +0100 Subject: [PATCH] docs: remove redundant paragraph Signed-off-by: Linda Siemons --- metrics/src/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index fc65b102..7456b012 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -99,15 +99,10 @@ //! seamless emit their own metrics without knowing or caring which exporter implementation is chosen, or even if one is //! installed. //! -//! In cases where no global recorder is installed, a "noop" recorder lives in its place, which has an incredibly very +//! In cases where no global recorder is installed, a "noop" recorder lives in its place, which has an incredibly //! low overhead: an atomic load and comparison. Libraries can safely instrument their code without fear of ruining //! baseline performance. //! -//! By default, a "noop" recorder is present so that the macros can work even if no exporter has been installed. This -//! recorder has extremely low overhead -- a relaxed load and conditional -- and so, practically speaking, the overhead -//! when no exporter is installed is extremely low. You can safely instrument applications knowing that you won't pay a -//! heavy performance cost even if you're not shipping metrics. -//! //! ### Examples //! //! ```rust