This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-math.git
The following commit(s) were added to refs/heads/master by this push:
new b7be4da3e Fix Javadoc typos
b7be4da3e is described below
commit b7be4da3e5dcd735e3e975cf7c8f054c73d5bfeb
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 14 14:39:15 2026 -0500
Fix Javadoc typos
---
.../commons/math4/legacy/analysis/solvers/UnivariateSolverUtils.java | 2 +-
.../commons/math4/legacy/stat/descriptive/ResizableDoubleArray.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/solvers/UnivariateSolverUtils.java
b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/solvers/UnivariateSolverUtils.java
index a4cb5e009..82050a06f 100644
---
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/solvers/UnivariateSolverUtils.java
+++
b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/solvers/UnivariateSolverUtils.java
@@ -175,7 +175,7 @@ public final class UnivariateSolverUtils {
* with {@code q} and {@code r} set to 1.0 and {@code maximumIterations}
set to {@code Integer.MAX_VALUE}.
* <p>
* <strong>Note: </strong> this method can take {@code Integer.MAX_VALUE}
- * iterations to throw a {@code ConvergenceException.} Unless you are
+ * iterations to throw a {@code ConvergenceException}. Unless you are
* confident that there is a root between {@code lowerBound} and
* {@code upperBound} near {@code initial}, it is better to use
* {@link #bracket(UnivariateFunction, double, double, double,
double,double, int)
diff --git
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/descriptive/ResizableDoubleArray.java
b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/descriptive/ResizableDoubleArray.java
index 47b075f92..23e5de3f8 100644
---
a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/descriptive/ResizableDoubleArray.java
+++
b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/stat/descriptive/ResizableDoubleArray.java
@@ -60,7 +60,7 @@ import org.apache.commons.math4.legacy.core.MathArrays;
* {@code contractionFactor} properties. If the {@code expansionMode}
* is {@code MULTIPLICATIVE}, contraction is triggered when the
* ratio between storage array length and {@code numElements} exceeds
- * {@code contractionFactor.} If the {@code expansionMode}
+ * {@code contractionFactor}. If the {@code expansionMode}
* is {@code ADDITIVE}, the number of excess storage locations
* is compared to {@code contractionFactor}.
* <p>