Javadoc.
Project: http://git-wip-us.apache.org/repos/asf/commons-numbers/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-numbers/commit/d93af779 Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/d93af779 Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/d93af779 Branch: refs/heads/master Commit: d93af7790f25beaf6fb6c81b2f1e95fc6711b525 Parents: 8dc0ad8 Author: Gilles Sadowski <[email protected]> Authored: Fri Jan 20 13:53:33 2017 +0100 Committer: Gilles Sadowski <[email protected]> Committed: Fri Jan 20 13:53:33 2017 +0100 ---------------------------------------------------------------------- .../java/org/apache/commons/numbers/complex/Complex.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/d93af779/commons-numbers-complex/src/main/java/org/apache/commons/numbers/complex/Complex.java ---------------------------------------------------------------------- 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 9581f81..219681b 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 @@ -38,10 +38,10 @@ import java.util.List; * Note that this contradicts the IEEE-754 standard for floating * point numbers (according to which the test {@code x == x} must fail if * {@code x} is {@code NaN}). The method - * {@link org.apache.commons.numbers.complex.util.Precision#equals(double,double,int) - * equals for primitive double} in {@link org.apache.commons.numbers.complex.util.Precision} - * conforms with IEEE-754 while this class conforms with the standard behavior - * for Java object types.</p> + * {@link org.apache.commons.numbers.core.Precision#equals(double,double,int) + * equals for primitive double} in class {@code Precision} conforms with + * IEEE-754 while this class conforms with the standard behavior for Java + * object types.</p> * */ public class Complex implements Serializable {
