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

commit 3154ce223747fcea32f1325a7d0d43007bf0193f
Author: Gary D. Gregory <[email protected]>
AuthorDate: Wed Oct 8 17:31:28 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/tuple/Pair.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/tuple/Pair.java 
b/src/main/java/org/apache/commons/lang3/tuple/Pair.java
index bcb2d88e3..daff9ffbf 100644
--- a/src/main/java/org/apache/commons/lang3/tuple/Pair.java
+++ b/src/main/java/org/apache/commons/lang3/tuple/Pair.java
@@ -77,7 +77,7 @@ public static <L, R> Pair<L, R>[] emptyArray() {
      * @param <R> the right element type.
      * @param left  the left element, may be null.
      * @param right  the right element, may be null.
-     * @return a pair formed from the two parameters, not null.
+     * @return an immutable pair formed from the two parameters, not null.
      */
     public static <L, R> Pair<L, R> of(final L left, final R right) {
         return ImmutablePair.of(left, right);
@@ -92,7 +92,7 @@ public static <L, R> Pair<L, R> of(final L left, final R 
right) {
      * @param <L> the left element type.
      * @param <R> the right element type.
      * @param pair the map entry.
-     * @return a pair formed from the map entry.
+     * @return an immutable pair formed from the map entry.
      * @since 3.10
      */
     public static <L, R> Pair<L, R> of(final Map.Entry<L, R> pair) {
@@ -109,7 +109,7 @@ public static <L, R> Pair<L, R> of(final Map.Entry<L, R> 
pair) {
      * @param <R> the right element type.
      * @param left  the left element, may not be null.
      * @param right  the right element, may not  be null.
-     * @return a pair formed from the two parameters, not null.
+     * @return an immutable pair formed from the two parameters, not null.
      * @throws NullPointerException if any input is null.
      * @since 3.13.0
      */

Reply via email to