You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/11/30 13:35:18 UTC

[commons-statistics] 02/15: Replace cdf(x) in javadoc with cumulativeProbability(x)

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git

commit 527665336d3286ff8b5fb715e607f1b3743973d6
Author: aherbert <ah...@apache.org>
AuthorDate: Wed Nov 30 11:41:10 2022 +0000

    Replace cdf(x) in javadoc with cumulativeProbability(x)
---
 .../statistics/distribution/AbstractContinuousDistribution.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/AbstractContinuousDistribution.java b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/AbstractContinuousDistribution.java
index 1df9d03..34c9149 100644
--- a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/AbstractContinuousDistribution.java
+++ b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/AbstractContinuousDistribution.java
@@ -119,8 +119,8 @@ abstract class AbstractContinuousDistribution
      * <li>{@link #getSupportLowerBound()} for {@code p = 0},</li>
      * <li>{@link #getSupportUpperBound()} for {@code p = 1}, or</li>
      * <li>the result of a search for a root between the lower and upper bound using
-     *     {@link #cumulativeProbability(double) cdf(x) - p}. The bounds may be bracketed for
-     *     efficiency.</li>
+     *     {@link #cumulativeProbability(double) cumulativeProbability(x) - p}.
+     *     The bounds may be bracketed for efficiency.</li>
      * </ul>
      *
      * @throws IllegalArgumentException if {@code p < 0} or {@code p > 1}