Repository: commons-numbers Updated Branches: refs/heads/master c12828547 -> 4094c82a9
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/4d701754 Tree: http://git-wip-us.apache.org/repos/asf/commons-numbers/tree/4d701754 Diff: http://git-wip-us.apache.org/repos/asf/commons-numbers/diff/4d701754 Branch: refs/heads/master Commit: 4d701754800b2e189b3f1850d797ae9143c4a6d0 Parents: c128285 Author: Gilles Sadowski <[email protected]> Authored: Sat Jan 21 19:34:27 2017 +0100 Committer: Gilles Sadowski <[email protected]> Committed: Sat Jan 21 19:34:27 2017 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/commons/numbers/complex/Complex.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-numbers/blob/4d701754/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 ae0ebe5..26bf454 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 @@ -279,7 +279,12 @@ public class Complex implements Serializable { imaginary / divisor); } - /** {@inheritDoc} */ + /** + * Returns the multiplicative inverse this instance. + * + * @return {@code 1 / this}. + * @see #divide(Complex) + */ public Complex reciprocal() { if (isNaN) { return NaN;
