You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2021/05/23 03:00:06 UTC

[commons-math] 04/04: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch modularized_master
in repository https://gitbox.apache.org/repos/asf/commons-math.git

commit 00e80fe76317b2b2b2869af6f285bab5553699a5
Author: Gilles Sadowski <gi...@gmail.com>
AuthorDate: Sun May 23 04:29:07 2021 +0200

    Javadoc.
---
 .../java/org/apache/commons/math4/transform/FastFourierTransform.java | 4 ++--
 .../java/org/apache/commons/math4/transform/FastSineTransform.java    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastFourierTransform.java b/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastFourierTransform.java
index d11d74c..6f4d5a9 100644
--- a/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastFourierTransform.java
+++ b/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastFourierTransform.java
@@ -398,7 +398,7 @@ public class FastFourierTransform implements ComplexTransform {
      */
     public enum Norm {
         /**
-         * Should be passed to the constructor of {@link FastFourierTransformer}
+         * Should be passed to the constructor of {@link FastFourierTransform}
          * to use the <em>standard</em> normalization convention. This normalization
          * convention is defined as follows
          * <ul>
@@ -412,7 +412,7 @@ public class FastFourierTransform implements ComplexTransform {
         STD,
 
         /**
-         * Should be passed to the constructor of {@link FastFourierTransformer}
+         * Should be passed to the constructor of {@link FastFourierTransform}
          * to use the <em>unitary</em> normalization convention. This normalization
          * convention is defined as follows
          * <ul>
diff --git a/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastSineTransform.java b/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastSineTransform.java
index 4b37646..c35c67d 100644
--- a/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastSineTransform.java
+++ b/commons-math-transform/src/main/java/org/apache/commons/math4/transform/FastSineTransform.java
@@ -87,7 +87,7 @@ public class FastSineTransform implements RealTransform {
      *
      * The first element of the specified data set is required to be {@code 0}.
      *
-     * @throws MathIllegalArgumentException if the length of the data array is
+     * @throws IllegalArgumentException if the length of the data array is
      * not a power of two, or the first element of the data array is not zero.
      */
     @Override