From af8e2382e6c358333f463ac3f7c0339dce9b49fb Mon Sep 17 00:00:00 2001 From: Orion Yeung <11580988+orionyeung001@users.noreply.github.com> Date: Fri, 24 May 2024 19:46:40 -0500 Subject: [PATCH] chore: docstring math should `text` instead of `ignore` --- src/distribution/exponential.rs | 2 +- src/distribution/log_normal.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/distribution/exponential.rs b/src/distribution/exponential.rs index b509e058..105cd83e 100644 --- a/src/distribution/exponential.rs +++ b/src/distribution/exponential.rs @@ -114,7 +114,7 @@ impl ContinuousCDF for Exp { /// /// # Formula /// - /// ```ignore + /// ```text /// -ln(1 - p) / λ /// ``` /// diff --git a/src/distribution/log_normal.rs b/src/distribution/log_normal.rs index 46cd1c8a..356a6ab3 100644 --- a/src/distribution/log_normal.rs +++ b/src/distribution/log_normal.rs @@ -123,7 +123,7 @@ impl ContinuousCDF for LogNormal { /// /// # Formula /// - /// ```ignore + /// ```text /// μ - σ * sqrt(2) * erfc_inv(2p) /// ``` ///