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 2010/09/22 15:41:08 UTC

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

Author: erans
Date: Wed Sep 22 13:41:07 2010
New Revision: 999939

URL: http://svn.apache.org/viewvc?rev=999939&view=rev
Log:
Fixed Javadoc warning.

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=999939&r1=999938&r2=999939&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 Wed Sep 22 13:41:07 2010
@@ -2881,8 +2881,8 @@ public class FastMath {
     }
 
     /** Compute the cubic root of a number.
-     * @param a number on which evaluation is done
-     * @return cubic root of a
+     * @param x number on which evaluation is done
+     * @return cubic root of x
      */
     public static double cbrt(double x) {
       /* Convert input double to bits */