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:48:34 UTC

svn commit: r1060119 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MathUtils.java

Author: sebb
Date: Mon Jan 17 22:48:34 2011
New Revision: 1060119

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

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

Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MathUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MathUtils.java?rev=1060119&r1=1060118&r2=1060119&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MathUtils.java (original)
+++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MathUtils.java Mon Jan 17 22:48:34 2011
@@ -429,7 +429,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,int)}.
+     * equal as defined by {@link #equals(float,float,int) equals(x, y, 1)}.
      *
      * @param x first value
      * @param y second value
@@ -506,7 +506,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)}.
+     * by {@link #equals(float,float,int) equals(x, y, maxUlps)}.
      *
      * @param x first value
      * @param y second value
@@ -674,7 +674,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
@@ -690,7 +690,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(double,double) this method}.
+     * {@link #equals(double,double)}.
      *
      * @param x first array
      * @param y second array
@@ -722,7 +722,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 #equalsIncludingNaN(double,double) this method}.
+     * {@link #equalsIncludingNaN(double,double)}.
      *
      * @param x first array
      * @param y second array