From 585b04c22edee12b193fc3e5099537af4127080b Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Mon, 26 Dec 2022 03:09:37 +0100 Subject: [PATCH] Javadoc. --- .../commons/math4/legacy/distribution/package-info.java | 6 ++++-- .../apache/commons/math4/legacy/special/package-info.java | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/distribution/package-info.java b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/distribution/package-info.java index 2c670716e..a9abd5178 100644 --- a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/distribution/package-info.java +++ b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/distribution/package-info.java @@ -15,7 +15,9 @@ * limitations under the License. */ /** - * Implementations of common discrete and continuous distributions. - * [Mostly moved to the "Commons Statistics" project (cf. JIRA: MATH-1443).] + * Implementations of probability distributions. + * + * Many common discrete and continuous distributions are available in + * Commons Statistics. */ package org.apache.commons.math4.legacy.distribution; diff --git a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/special/package-info.java b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/special/package-info.java index a80b8c679..f06f82aaf 100644 --- a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/special/package-info.java +++ b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/special/package-info.java @@ -15,6 +15,8 @@ * limitations under the License. */ /** - * Implementations of special functions such as Beta and Gamma. + * Implementations of special functions. + * Note that Beta and Gamma functions are available in + * Commons Numbers. */ package org.apache.commons.math4.legacy.special;