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 87729db90e75908f04a6aa57e1fce9e4379b3e0d Author: aherbert <aherb...@apache.org> AuthorDate: Thu Dec 5 10:20:20 2019 +0000 Javadoc fix. --- .../src/main/java/org/apache/commons/numbers/complex/Complex.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 c79e077..22fc471 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 @@ -145,10 +145,10 @@ public final class Complex implements Serializable { * <pre> * Examples: * {@code - * polar2Complex(INFINITY, \(\pi\)) = INFINITY + INFINITY i - * polar2Complex(INFINITY, 0) = INFINITY + NaN i - * polar2Complex(INFINITY, \(-\frac{\pi}{4}\)) = INFINITY - INFINITY i - * polar2Complex(INFINITY, \(5\frac{\pi}{4}\)) = -INFINITY - INFINITY i } + * ofPolar(INFINITY, \(\pi\)) = INFINITY + INFINITY i + * ofPolar(INFINITY, 0) = INFINITY + NaN i + * ofPolar(INFINITY, \(-\frac{\pi}{4}\)) = INFINITY - INFINITY i + * ofPolar(INFINITY, \(5\frac{\pi}{4}\)) = -INFINITY - INFINITY i } * </pre> * * @param r the modulus of the complex number to create