From deba76a4c20651e2ea962eaf0e8a269676bc4dd0 Mon Sep 17 00:00:00 2001 From: Ruslan Fadeev Date: Sun, 5 May 2024 21:54:54 +0400 Subject: [PATCH] Fix wording for histogram functionality in lib.rs (#477) --- metrics/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index 6db3b022..d7185d66 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -46,7 +46,7 @@ //! specifically deal with bucketed or binned values: how many values fell within 0-10, how many //! fell within 11-20, and so on and so forth. Percentiles, commonly associated with "summaries", //! deal with understanding how much of a distribution falls below or at a particular percentage of -//! that distribution: 50% of requests are slower than 500ms, 99% of requests are slower than +//! that distribution: 50% of requests are faster than 500ms, 99% of requests are faster than //! 2450ms, and so on and so forth. //! //! While we use the term "histogram" in `metrics`, we enforce no particular usage of true