Javadoc.
Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/59279e37 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/59279e37 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/59279e37 Branch: refs/heads/master Commit: 59279e378c0e61b07292e57145365faf1b94328d Parents: d71ead4 Author: Gilles <[email protected]> Authored: Wed May 10 15:25:36 2017 +0200 Committer: Gilles <[email protected]> Committed: Wed May 10 15:25:36 2017 +0200 ---------------------------------------------------------------------- .../apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/59279e37/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java b/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java index 3f699fb..ef45917 100644 --- a/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java +++ b/src/main/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTest.java @@ -121,7 +121,7 @@ public class KolmogorovSmirnovTest { private static final int MAXIMUM_PARTIAL_SUM_COUNT = 100000; /** Convergence criterion for {@link #ksSum(double, double, int)} */ private static final double KS_SUM_CAUCHY_CRITERION = 1e-20; - /** Convergence criterion for the sums in #pelzGood(double, double, int)} */ + /** Convergence criterion for the sums in {@link #pelzGood(double, int)} */ private static final double PG_SUM_RELATIVE_ERROR = 1e-10; /**
