This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-numbers.git
commit 8375852acc8b58f12b8f0acf51046753569e0e52 Author: aherbert <aherb...@apache.org> AuthorDate: Fri Dec 20 10:17:46 2019 +0000 Fix javadoc comment on SAFE_MIN/MAX --- .../src/main/java/org/apache/commons/numbers/complex/Complex.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java index c390ccf..c9be094 100644 --- a/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java +++ b/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java @@ -87,12 +87,12 @@ public final class Complex implements Serializable { private static final double B_CROSSOVER = 0.6471; /** * The safe maximum double value {@code x} to avoid loss of precision in asin/acos. - * Equal to sqrt(M) / 8 in the Hull, et al with M the largest normalised floating-point value. + * Equal to sqrt(M) / 8 in Hull, et al (1997) with M the largest normalised floating-point value. */ private static final double SAFE_MAX = Math.sqrt(Double.MAX_VALUE) / 8; /** * The safe minimum double value {@code x} to avoid loss of precision/underflow in asin/acos. - * Equal to sqrt(u) * 4 in the Hull, et al with u the smallest normalised floating-point value. + * Equal to sqrt(u) * 4 in Hull, et al (1997) with u the smallest normalised floating-point value. */ private static final double SAFE_MIN = Math.sqrt(Double.MIN_NORMAL) * 4; /**