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/21 21:24:38 UTC

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

Author: sebb
Date: Fri Jan 21 20:24:37 2011
New Revision: 1062007

URL: http://svn.apache.org/viewvc?rev=1062007&view=rev
Log:
Correct list of unique methods

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java?rev=1062007&r1=1062006&r2=1062007&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java Fri Jan 21 20:24:37 2011
@@ -17,14 +17,17 @@
 package org.apache.commons.math.util;
 
 /**
- * Faster, more accurate, portable alternative to StrictMath.
+ * Faster, more accurate, portable alternative to {@link StrictMath}.
  * <p>
- * Additionally implements the following methods:
+ * Additionally implements the following methods not found in StrictMath:
  * <ul>
  * <li>{@link #asinh(double)}</li>
  * <li>{@link #acosh(double)}</li>
  * <li>{@link #atanh(double)}</li>
  * <li>{@link #nextAfter(float,float)}</li>
+ * </ul>
+ * The following methods are found in StrictMath since 1.6 only
+ * <ul>
  * <li>{@link #nextAfter(double,double)}</li>
  * <li>{@link #nextUp(double)}</li>
  * <li>{@link #nextUp(float)}</li>