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/11/08 18:51:30 UTC

[commons-numbers] 03/32: Reference conjugate from conj method javadoc.

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 aec4ea5378f577f32d0b9faa58916ad6fd5ca7a8
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Wed Nov 6 21:54:10 2019 +0000

    Reference conjugate from conj method javadoc.
---
 .../src/main/java/org/apache/commons/numbers/complex/Complex.java        | 1 +
 1 file changed, 1 insertion(+)

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 c6c5224..aa23ed5 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
@@ -291,6 +291,7 @@ public final class Complex implements Serializable  {
      * Returns the conjugate of this complex number.
      * C++11 grammar.
      * @return the conjugate of this complex object.
+     * @see #conjugate()
      */
     public Complex conj() {
         return conjugate();