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 2023/02/16 17:02:21 UTC

[commons-statistics] branch master updated: Correct malformed javadoc single quote using encoded character

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


The following commit(s) were added to refs/heads/master by this push:
     new 495850e  Correct malformed javadoc single quote using encoded character
495850e is described below

commit 495850eb2b09b3bd94e69471510fc0b32e99cd40
Author: aherbert <ah...@apache.org>
AuthorDate: Thu Feb 16 17:02:03 2023 +0000

    Correct malformed javadoc single quote using encoded character
---
 .../java/org/apache/commons/statistics/inference/FisherExactTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/FisherExactTest.java b/commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/FisherExactTest.java
index 297c469..740ee2d 100644
--- a/commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/FisherExactTest.java
+++ b/commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/FisherExactTest.java
@@ -28,7 +28,7 @@ import org.apache.commons.statistics.distribution.HypergeometricDistribution;
  * <p>Fisher's test applies in the case that the row sums and column sums are fixed in advance
  * and not random.
  *
- * @see <a href="https://en.wikipedia.org/wiki/Fisher%27s_exact_test">Fisher's exact test (Wikipedia)</a>
+ * @see <a href="https://en.wikipedia.org/wiki/Fisher%27s_exact_test">Fisher&#39;s exact test (Wikipedia)</a>
  * @since 1.1
  */
 public final class FisherExactTest {