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 2021/12/15 18:19:30 UTC

[commons-statistics] 03/03: Fix typo

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 e83dec2e345317b7036c2ba1fcab66c62fdbc534
Author: aherbert <ah...@apache.org>
AuthorDate: Wed Dec 15 17:44:03 2021 +0000

    Fix typo
---
 .../java/org/apache/commons/statistics/distribution/FDistribution.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/FDistribution.java b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/FDistribution.java
index 458d7ea..b548af7 100644
--- a/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/FDistribution.java
+++ b/commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/FDistribution.java
@@ -190,7 +190,7 @@ public final class FDistribution extends AbstractContinuousDistribution {
         final double n = numeratorDegreesOfFreedom;
         final double m = denominatorDegreesOfFreedom;
 
-        // Comute the complement of the regularized beta function
+        // Compute the complement of the regularized beta function
         // with direct computation of 1 - z:
         // 1 - I(z, a, b) = I(1 - z, b, a)
         return RegularizedBeta.value(m / (m + n * x),