Author: sebb
Date: Sat Jan 22 20:28:59 2011
New Revision: 1062261
URL: http://svn.apache.org/viewvc?rev=1062261&view=rev
Log:
Javadoc tweak
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java?rev=1062261&r1=1062260&r2=1062261&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java
Sat Jan 22 20:28:59 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) {