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/11/25 17:27:05 UTC

[commons-statistics] 02/03: Javadoc typos

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 5345d96e7c68dc8547be5b39c4910c5e785fd435
Author: aherbert <ah...@apache.org>
AuthorDate: Fri Nov 25 16:55:23 2022 +0000

    Javadoc typos
---
 .../statistics/distribution/BaseContinuousDistributionTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/BaseContinuousDistributionTest.java b/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/BaseContinuousDistributionTest.java
index e976304..2510156 100644
--- a/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/BaseContinuousDistributionTest.java
+++ b/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/BaseContinuousDistributionTest.java
@@ -208,9 +208,9 @@ import org.junit.jupiter.params.provider.MethodSource;
 abstract class BaseContinuousDistributionTest
     extends BaseDistributionTest<ContinuousDistribution, ContinuousDistributionTestData> {
 
-    /** Relative accuracy of the integrator result. */
-    private static final double INTEGRATOR_ABS_ACCURACY = 1e-10;
     /** Absolute accuracy of the integrator result. */
+    private static final double INTEGRATOR_ABS_ACCURACY = 1e-10;
+    /** Relative accuracy of the integrator result. */
     private static final double INTEGRATOR_REL_ACCURACY = 1e-12;
 
     @Override