diff --git a/src/main/java/org/apache/commons/math4/special/Beta.java b/src/main/java/org/apache/commons/math4/special/Beta.java index bfcf818ab..9e40cd846 100644 --- a/src/main/java/org/apache/commons/math4/special/Beta.java +++ b/src/main/java/org/apache/commons/math4/special/Beta.java @@ -46,7 +46,6 @@ import org.apache.commons.math4.util.FastMath; * indicates that unless otherwise stated in the code, all FORTRAN functions in * this library are license free. Since no such notice appears in the code these * functions can safely be ported to Commons-Math. - *
*/ public class Beta { /** Maximum allowed numerical error. */ @@ -379,7 +378,7 @@ public class Beta { } /** - * Returns the value of log B(p, q) for 0 ≤ x ≤ 1 and p, q > 0. Based on the + * Returns the value of {@code log B(p, q)} for {@code 0 ≤ x ≤ 1} and {@code p, q > 0}. Based on the * NSWC Library of Mathematics Subroutines implementation, * {@code DBETLN}. * diff --git a/src/main/java/org/apache/commons/math4/special/Erf.java b/src/main/java/org/apache/commons/math4/special/Erf.java index c0c4ce077..14aede77e 100644 --- a/src/main/java/org/apache/commons/math4/special/Erf.java +++ b/src/main/java/org/apache/commons/math4/special/Erf.java @@ -45,7 +45,7 @@ public class Erf { /** * Returns the error function. * - *erf(x) = 2/√π 0∫x e-t2dt
+ *erf(x) = 2/√π 0∫x e-t2dt
* *This implementation computes erf(x) using the * {@link Gamma#regularizedGammaP(double, double, double, int) regularized gamma function}, @@ -73,7 +73,7 @@ public class Erf { /** * Returns the complementary error function. * - *
erfc(x) = 2/√π x∫∞ e-t2dt + *
erfc(x) = 2/√π x∫∞ e-t2dt
*
* = 1 - {@link #erf(double) erf(x)}