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

commons-numbers git commit: Javadoc (nit-picks).

Repository: commons-numbers
Updated Branches:
  refs/heads/master 51467b04f -> 810f26cfe


Javadoc (nit-picks).


Project: http://git-wip-us.apache.org/repos/asf/commons-numbers/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-numbers/commit/810f26cf
Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/810f26cf
Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/810f26cf

Branch: refs/heads/master
Commit: 810f26cfe80d4e23c45f57e05d552ae1bb9b1518
Parents: 51467b0
Author: Gilles Sadowski <gi...@harfang.homelinux.org>
Authored: Fri Feb 2 13:48:45 2018 +0100
Committer: Gilles Sadowski <gi...@harfang.homelinux.org>
Committed: Fri Feb 2 13:48:45 2018 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/commons/numbers/complex/Complex.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/810f26cf/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 763b903..422cb30 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
@@ -180,7 +180,9 @@ public class Complex implements Serializable  {
      * Returns {@code NaN} if either real or imaginary part is {@code NaN}
      * and {@code Double.POSITIVE_INFINITY} if neither part is {@code NaN},
      * but at least one part is infinite.
-     * This code follows the <a href="http://www.iso-9899.info/wiki/The_Standard">ISO C Standard</a>, Annex G, in calculating the returned value (i.e. the hypot(x,y) method)
+     * This code follows the
+     * <a href="http://www.iso-9899.info/wiki/The_Standard">ISO C Standard</a>,
+     * Annex G, in calculating the returned value (i.e. the hypot(x,y) method).
      *
      * @return the absolute value.
      */