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 fc92ca62b Fix illegal Javadoc tags (Java 17)
fc92ca62b is described below
commit fc92ca62be54e78d367075c1695c6a0ffa1ef29b
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 5 09:09:47 2023 -0500
Fix illegal Javadoc tags (Java 17)
---
.../math4/legacy/analysis/polynomials/PolynomialFunctionTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/analysis/polynomials/PolynomialFunctionTest.java
b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/analysis/polynomials/PolynomialFunctionTest.java
index 7bc78b6d9..9da4989e3 100644
---
a/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/analysis/polynomials/PolynomialFunctionTest.java
+++
b/commons-math-legacy/src/test/java/org/apache/commons/math4/legacy/analysis/polynomials/PolynomialFunctionTest.java
@@ -56,8 +56,8 @@ public final class PolynomialFunctionTest {
*
* <p>This will test the function f(x) = 3*x - 1.5</p>
* <p>This will have the values
- * <tt>f(0) = -1.5, f(-1) = -4.5, f(-2.5) = -9,
- * f(0.5) = 0, f(1.5) = 3</tt> and {@code f(3) = 7.5}
+ * <code>f(0) = -1.5, f(-1) = -4.5, f(-2.5) = -9,
+ * f(0.5) = 0, f(1.5) = 3</code> and {@code f(3) = 7.5}
* </p>
*/
@Test