You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/05/05 10:10:20 UTC

[commons-statistics] 02/02: Javadoc

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

commit 8734db28570087326c298499001477280da87343
Author: aherbert <ah...@apache.org>
AuthorDate: Thu May 5 11:02:40 2022 +0100

    Javadoc
---
 .../org/apache/commons/statistics/distribution/ExtendedPrecision.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/ExtendedPrecision.java b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/ExtendedPrecision.java
index 6ad73a9..837cc46 100644
--- a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/ExtendedPrecision.java
+++ b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/ExtendedPrecision.java
@@ -52,10 +52,10 @@ final class ExtendedPrecision {
     private static final double SQRT2PI_H;
     /** Lower bits of sqrt(2 pi). */
     private static final double SQRT2PI_L;
-    /** X-value where {@code exp(-0.5*x*x)} cannot increase accuracy using the round-off
+    /** X squared value where {@code exp(-0.5*x*x)} cannot increase accuracy using the round-off
      * from x squared. */
     private static final int EXP_M_HALF_XX_MIN_VALUE = 2;
-    /** Approximate x-value where {@code exp(-0.5*x*x) == 0}. This is above
+    /** Approximate x squared value where {@code exp(-0.5*x*x) == 0}. This is above
      * {@code -2 * ln(2^-1074)} due to rounding performed within the exp function. */
     private static final int EXP_M_HALF_XX_MAX_VALUE = 1491;