Skip to content

Commit

Permalink
docs: remove redundant paragraph (#549)
Browse files Browse the repository at this point in the history
Signed-off-by: Linda Siemons <linda@catbrained.dev>
Co-authored-by: Toby Lawrence <tobz@users.noreply.github.com>
  • Loading branch information
catbrained and tobz authored Jan 15, 2025
1 parent c63386b commit b12f4d0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions metrics/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b12f4d0

Please sign in to comment.