From 6967590b83a4a903b3d78377471b811b60219d32 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sat, 22 Jan 2011 20:28:37 +0000 Subject: [PATCH] Javadoc tweak git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1062260 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/math/util/FastMath.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/math/util/FastMath.java b/src/main/java/org/apache/commons/math/util/FastMath.java index 5da97fc87..9c097020d 100644 --- a/src/main/java/org/apache/commons/math/util/FastMath.java +++ b/src/main/java/org/apache/commons/math/util/FastMath.java @@ -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) {