You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/01/17 23:55:44 UTC

svn commit: r1060122 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java

Author: sebb
Date: Mon Jan 17 22:55:44 2011
New Revision: 1060122

URL: http://svn.apache.org/viewvc?rev=1060122&view=rev
Log:
Clarify Javadoc link references

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java?rev=1060122&r1=1060121&r2=1060122&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java Mon Jan 17 22:55:44 2011
@@ -431,7 +431,7 @@ public final class MathUtils {
 
     /**
      * Returns true if both arguments are NaN or neither is NaN and they are
-     * equal as defined by {@link #equals(float,float) this method}.
+     * equal as defined by {@link #equals(float,float) equals(x, y, 1)}.
      *
      * @param x first value
      * @param y second value
@@ -508,7 +508,7 @@ public final class MathUtils {
 
     /**
      * Returns true if both arguments are NaN or if they are equal as defined
-     * by {@link #equals(float,float,int) this method}.
+     * by {@link #equals(float,float,int) equals(x, y, maxUlps)}.
      *
      * @param x first value
      * @param y second value
@@ -524,7 +524,7 @@ public final class MathUtils {
     /**
      * Returns true iff both arguments are null or have same dimensions and all
      * their elements are equal as defined by
-     * {@link #equals(float,float) this method}.
+     * {@link #equals(float,float)}.
      *
      * @param x first array
      * @param y second array
@@ -585,7 +585,7 @@ public final class MathUtils {
 
     /**
      * Returns true if both arguments are NaN or neither is NaN and they are
-     * equal as defined by {@link #equals(double,double) this method}.
+     * equal as defined by {@link #equals(double,double) equals(x, y, 1)}.
      *
      * @param x first value
      * @param y second value
@@ -664,7 +664,7 @@ public final class MathUtils {
 
     /**
      * Returns true if both arguments are NaN or if they are equal as defined
-     * by {@link #equals(double,double,int) this method}.
+     * by {@link #equals(double,double,int) equals(x, y, maxUlps)}.
      *
      * @param x first value
      * @param y second value
@@ -680,7 +680,7 @@ public final class MathUtils {
     /**
      * Returns {@code true} iff both arguments are {@code null} or have same
      * dimensions and all their elements are equal as defined by
-     * {@link #equals(double,double) this method}.
+     * {@link #equals(double,double)}.
      *
      * @param x First array.
      * @param y Second array.