This is an automated email from the ASF dual-hosted git repository. ggregory 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 af2d010 Normalize to US English spelling. af2d010 is described below commit af2d010e8cd2164f0a4b5232e41b66cfaf389e3c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Feb 8 14:16:10 2021 -0500 Normalize to US English spelling. --- .../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 56b891a..e69381b 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 @@ -1431,7 +1431,7 @@ public final class Complex implements Serializable { // Check for over/underflow in |z| // When scaling: // log(a / b) = log(a) - log(b) - // So initialise the result with the log of the scale factor. + // So initialize the result with the log of the scale factor. re = 0; if (x > Double.MAX_VALUE / 2) { // Potential overflow.