You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/12/12 12:40:50 UTC

[commons-numbers] branch master updated: Tweak Javadoc for NAN constant.

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


The following commit(s) were added to refs/heads/master by this push:
     new 9011b7d  Tweak Javadoc for NAN constant.
9011b7d is described below

commit 9011b7d425699af4a371e9aa118d77cd4718d673
Author: aherbert <ah...@apache.org>
AuthorDate: Thu Dec 12 12:40:46 2019 +0000

    Tweak Javadoc for NAN constant.
---
 .../src/main/java/org/apache/commons/numbers/complex/Complex.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 1677102..1b21339 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
@@ -63,7 +63,7 @@ public final class Complex implements Serializable  {
      */
     public static final Complex ZERO = new Complex(0, 0);
 
-    /** A complex number representing "NaN + NaN i": {@code NaN + i NaN} */
+    /** A complex number representing {@code NaN + i NaN}. */
     private static final Complex NAN = new Complex(Double.NaN, Double.NaN);
     /** 3*&pi;/4. */
     private static final double PI_3_OVER_4 = 0.75 * Math.PI;