Skip to content

Commit 5572527

Browse files
committed
Javadoc
1 parent 3154ce2 commit 5572527

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/org/apache/commons/lang3/tuple

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/lang3/tuple/Triple.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static <L, M, R> Triple<L, M, R>[] emptyArray() {
7777
* @param left the left element, may be null.
7878
* @param middle the middle element, may be null.
7979
* @param right the right element, may be null.
80-
* @return a triple formed from the three parameters, not null.
80+
* @return an immutable triple formed from the three parameters, not null.
8181
*/
8282
public static <L, M, R> Triple<L, M, R> of(final L left, final M middle, final R right) {
8383
return ImmutableTriple.of(left, middle, right);
@@ -95,7 +95,7 @@ public static <L, M, R> Triple<L, M, R> of(final L left, final M middle, final R
9595
* @param left the left element, may not be null.
9696
* @param middle the middle element, may not be null.
9797
* @param right the right element, may not be null.
98-
* @return a triple formed from the three parameters, not null.
98+
* @return an immutable triple formed from the three parameters, not null.
9999
* @throws NullPointerException if any input is null.
100100
* @since 3.13.0
101101
*/

0 commit comments

Comments
 (0)