This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new b0fcd1bae8 fix typos
b0fcd1bae8 is described below
commit b0fcd1bae879aa1c1983d341d56b58eb3a5e8dec
Author: Paul King <[email protected]>
AuthorDate: Thu Jan 2 06:42:48 2025 +1000
fix typos
---
.../groovy/runtime/ArrayGroovyMethods.java | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/main/java/org/codehaus/groovy/runtime/ArrayGroovyMethods.java
b/src/main/java/org/codehaus/groovy/runtime/ArrayGroovyMethods.java
index 32ea134599..5dafff05d5 100644
--- a/src/main/java/org/codehaus/groovy/runtime/ArrayGroovyMethods.java
+++ b/src/main/java/org/codehaus/groovy/runtime/ArrayGroovyMethods.java
@@ -5367,7 +5367,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the maximum value found from the int array
- * using the supplier IntUnaryOperator to determine the maximum of any two
values.
+ * using the supplied IntUnaryOperator to determine the maximum of any two
values.
* The operator is applied to each array element and the results are
compared.
* <p>
* <pre class="groovyTestCase">
@@ -5400,7 +5400,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the maximum value found from the long array
- * using the supplier LongBinaryOperator as a comparator to determine the
maximum of any two values.
+ * using the supplied LongBinaryOperator as a comparator to determine the
maximum of any two values.
* <p>
* <pre class="groovyTestCase">
* long[] nums = [10L, 20L, -30L]
@@ -5432,7 +5432,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the maximum value found from the long array
- * using the supplier LongUnaryOperator to determine the maximum of any
two values.
+ * using the supplied LongUnaryOperator to determine the maximum of any
two values.
* The operator is applied to each array element and the results are
compared.
* <p>
* <pre class="groovyTestCase">
@@ -5465,7 +5465,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the maximum value found from the double array
- * using the supplier DoubleComparator to determine the maximum of any two
values.
+ * using the supplied DoubleComparator to determine the maximum of any two
values.
* <p>
* <pre class="groovyTestCase">
* double[] nums = [10d, 20d, -30d]
@@ -5497,7 +5497,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the maximum value found from the double array
- * using the supplier DoubleUnaryOperator to determine the maximum of any
two values.
+ * using the supplied DoubleUnaryOperator to determine the maximum of any
two values.
* The operator is applied to each array element and the results are
compared.
* <p>
* <pre class="groovyTestCase">
@@ -5722,7 +5722,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the minimum value found from the int array
- * using the supplier IntComparator to determine the minimum of any two
values.
+ * using the supplied IntComparator to determine the minimum of any two
values.
* <p>
* <pre class="groovyTestCase">
* int[] nums = [10, -20, 30]
@@ -5754,7 +5754,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the minimum value found from the int array
- * using the supplier IntUnaryOperator to determine the minimum of any two
values.
+ * using the supplied IntUnaryOperator to determine the minimum of any two
values.
* The operator is applied to each array element and the results are
compared.
* <p>
* <pre class="groovyTestCase">
@@ -5787,7 +5787,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the minimum value found from the long array
- * using the supplier LongBinaryOperator as a comparator to determine the
minimum of any two values.
+ * using the supplied LongBinaryOperator as a comparator to determine the
minimum of any two values.
* <p>
* <pre class="groovyTestCase">
* long[] nums = [10L, -20L, 30L]
@@ -5819,7 +5819,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the minimum value found from the long array
- * using the supplier LongUnaryOperator to determine the minimum of any
two values.
+ * using the supplied LongUnaryOperator to determine the minimum of any
two values.
* The operator is applied to each array element and the results are
compared.
* <p>
* <pre class="groovyTestCase">
@@ -5852,7 +5852,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the minimum value found from the double array
- * using the supplier DoubleBinaryOperator as a comparator to determine
the minimum of any two values.
+ * using the supplied DoubleBinaryOperator as a comparator to determine
the minimum of any two values.
* <p>
* <pre class="groovyTestCase">
* double[] nums = [10d, -20d, 30d]
@@ -5884,7 +5884,7 @@ public class ArrayGroovyMethods extends
DefaultGroovyMethodsSupport {
/**
* Selects the minimum value found from the double array
- * using the supplier DoubleUnaryOperator to determine the minimum of any
two values.
+ * using the supplied DoubleUnaryOperator to determine the minimum of any
two values.
* The operator is applied to each array element and the results are
compared.
* <p>
* <pre class="groovyTestCase">