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 03c34e2 Normalize to US English spelling.
03c34e2 is described below
commit 03c34e2e38f46c061a025b8889548302a98714e1
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Feb 8 14:07:54 2021 -0500
Normalize to US English spelling.
---
.../apache/commons/numbers/examples/jmh/arrays/LinearCombinations.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/arrays/LinearCombinations.java
b/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/arrays/LinearCombinations.java
index ad81380..0b97f33 100644
---
a/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/arrays/LinearCombinations.java
+++
b/commons-numbers-examples/examples-jmh/src/main/java/org/apache/commons/numbers/examples/jmh/arrays/LinearCombinations.java
@@ -325,7 +325,7 @@ public final class LinearCombinations {
final int len = a.length;
final double[] r = arrayFactory.apply(len * 2);
- // p is the standard scalar product sum initialised with the first
product
+ // p is the standard scalar product sum initialized with the first
product
double p = a[0] * b[0];
r[0] = DoublePrecision.productLow(a[0], b[0], p);