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
The following commit(s) were added to refs/heads/master by this push:
new 571d2e5 Correct javadoc typo: use Z for integer x
571d2e5 is described below
commit 571d2e5ac7bcedcf882a905709bf6a3c80c39514
Author: Alex Herbert <[email protected]>
AuthorDate: Sat Sep 18 23:21:47 2021 +0100
Correct javadoc typo: use Z for integer x
---
.../apache/commons/statistics/distribution/DiscreteDistribution.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DiscreteDistribution.java
b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DiscreteDistribution.java
index 1fbc666..7c00115 100644
---
a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DiscreteDistribution.java
+++
b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DiscreteDistribution.java
@@ -145,7 +145,7 @@ public interface DiscreteDistribution {
* Gets the upper bound of the support.
* This method must return the same value as
* {@code inverseCumulativeProbability(1)}, i.e.
- * {@code inf {x in R | P(X <= x) = 1}}.
+ * {@code inf {x in Z | P(X <= x) = 1}}.
* By convention, {@code Integer.MAX_VALUE} should be substituted
* for positive infinity.
*