From 116ec32229b19e3d6f8e8f172472aef305f0e15c Mon Sep 17 00:00:00 2001 From: Why-not-now <81090788+Why-not-now@users.noreply.github.com> Date: Mon, 25 May 2026 14:12:39 +0800 Subject: [PATCH] Fixed redundant word "may" --- src/distribution/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/distribution/mod.rs b/src/distribution/mod.rs index 5b508e7f..b5bc5ab5 100644 --- a/src/distribution/mod.rs +++ b/src/distribution/mod.rs @@ -135,7 +135,7 @@ pub trait ContinuousCDF: Min + Max { /// Specialized inverse cdfs should be used whenever possible. /// Performs a binary search on the domain of `cdf` to obtain an approximation /// of `F^-1(p) := inf { x | F(x) >= p }`. Needless to say, performance may - /// may be lacking. + /// be lacking. #[doc(alias = "quantile function")] #[doc(alias = "quantile")] fn inverse_cdf(&self, p: T) -> K {