Skip to content

Commit 8e10a31

Browse files
siujamoCopilot
andauthored
fix typo
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 0757d99 commit 8e10a31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tuple/src/main/java/com/onixbyte/tuple/ImmutableTriTuple.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public record ImmutableTriTuple<L, M, R>(
4949
* @param left the left element
5050
* @param middle the middle element
5151
* @param right the right element
52-
* @return a new {@code TriTuple} containing the specified elements
52+
* @return a new {@code ImmutableTriTuple} containing the specified elements
5353
*/
5454
public static <L, M, R> ImmutableTriTuple<L, M, R> of(L left, M middle, R right) {
5555
return new ImmutableTriTuple<>(left, middle, right);

0 commit comments

Comments
 (0)