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/22 21:28:37 UTC

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

Author: sebb
Date: Sat Jan 22 20:28:37 2011
New Revision: 1062260

URL: http://svn.apache.org/viewvc?rev=1062260&view=rev
Log:
Javadoc tweak

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=1062260&r1=1062259&r2=1062260&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 Sat Jan 22 20:28:37 2011
@@ -2941,7 +2941,7 @@ public class FastMath {
      * Two arguments arctangent function
      * @param y ordinate
      * @param x abscissa
-     * @return phase angle of point (x,y) between -π and π
+     * @return phase angle of point (x,y) between {@code -PI} and {@code PI}
      */
     public static double atan2(double y, double x) {
         if (x !=x || y != y) {