This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 596269f16 Javadoc
596269f16 is described below

commit 596269f16d33cd4a20223978c245a15c898c5084
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 16 16:09:03 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/ArrayUtils.java                  | 2 +-
 .../lang3/builder/EqualsBuilderReflectJreImplementationTest.java        | 2 +-
 src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/ArrayUtils.java 
b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
index 6d205b883..18b586655 100644
--- a/src/main/java/org/apache/commons/lang3/ArrayUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ArrayUtils.java
@@ -3866,7 +3866,7 @@ public static boolean isSameType(final Object array1, 
final Object array2) {
     }
 
     /**
-     * Tests whether whether the provided array is sorted according to natural 
ordering ({@code false} before {@code true}).
+     * Tests whether the provided array is sorted according to natural 
ordering ({@code false} before {@code true}).
      *
      * @param array The array to check.
      * @return whether the array is sorted according to natural ordering.
diff --git 
a/src/test/java/org/apache/commons/lang3/builder/EqualsBuilderReflectJreImplementationTest.java
 
b/src/test/java/org/apache/commons/lang3/builder/EqualsBuilderReflectJreImplementationTest.java
index e9520dd40..2da49106b 100644
--- 
a/src/test/java/org/apache/commons/lang3/builder/EqualsBuilderReflectJreImplementationTest.java
+++ 
b/src/test/java/org/apache/commons/lang3/builder/EqualsBuilderReflectJreImplementationTest.java
@@ -265,7 +265,7 @@ private EqualsBuilder newRecursive() {
 
     @Test
     void testRecursive() {
-        // assertions are tricky to to the subclass
+        // assertions are tricky to the subclass
         final MyClass o1 = new MyClass(new MyCharSequence("1"), new 
MyTemporal("2"), new MyTemporalAccessor("3"), new MyTemporalAmount("4"));
         // This gives you different instances of MyTemporalAccessor for 1 (and 
2) that should be equals by reflection.
         final MyClass o1Bis = new MyClass(new MyCharSequence("1"), new 
MyTemporal("2"), new MyTemporalAccessor("3"), new MyTemporalAmount("4"));
diff --git 
a/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java 
b/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java
index cb6830c22..675e1d9a2 100644
--- a/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java
+++ b/src/test/java/org/apache/commons/lang3/builder/ToStringBuilderTest.java
@@ -283,7 +283,7 @@ void testAppendBooleanArrayWithFieldNameAndFullDetail() {
         assertEquals(baseStr + "[<size=3>]", new 
ToStringBuilder(base).append(null, array, false).toString());
     }
 
-    // Reflection Array Array tests
+    // Reflection Array tests
 
     @Test
     void testAppendByteArrayWithFieldName() {

Reply via email to