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-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 87538ebd4 Javadoc typo
87538ebd4 is described below
commit 87538ebd4de1d3f81aa8cec8af0ace1da1b23f60
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jan 26 10:31:28 2026 -0500
Javadoc typo
---
src/main/java/org/apache/commons/lang3/ArrayUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index b6039adcf..5cd2bdab6 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -8102,7 +8102,7 @@ public static boolean[] subarray(final boolean[] array,
int startIndexInclusive,
* The start index is inclusive, the end index exclusive. Null array input
produces null output.
* </p>
*
- * @param array the input array..
+ * @param array the input array.
* @param startIndexInclusive the starting index. Undervalue (<0) is
promoted to 0, overvalue (>array.length) results in an empty array.
* @param endIndexExclusive elements up to endIndex-1 are present in the
returned subarray. Undervalue (< startIndex) produces empty array, overvalue
* (>array.length) is demoted to array
length.