Skip to content

Commit

Permalink
Fix package-info for Tuples
Browse files Browse the repository at this point in the history
Signed-off-by: Rajiv Sethumadhavan <rajiv.sethumadhavan@bnymellon.com>
  • Loading branch information
rajivsethumadhavan committed Aug 7, 2020
1 parent 9977009 commit 8589a4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@
* <p>
* A tuple is a container used to hold two related objects.
* <p>
* This package contains 2 interfaces:
* This package contains 4 interfaces:
* <ul>
* <li>
* {@link org.eclipse.collections.api.tuple.Pair} - a container that holds two related objects.
* </li>
* <li>
* {@link org.eclipse.collections.api.tuple.Twin} - a Pair that has the same type for both items.
* </li>
* <li>
* {@link org.eclipse.collections.api.tuple.Triple} - a container that holds three related objects.
* </li>
* <li>
* {@link org.eclipse.collections.api.tuple.Triplet} - a Triple that has the same type for all three items.
* </li>
* </ul>
*/
package org.eclipse.collections.api.tuple;
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
*/

/**
* This package contains implementations of {@link org.eclipse.collections.api.tuple.Pair} and {@link org.eclipse.collections.api.tuple.Twin}.
* This package contains implementations of {@link org.eclipse.collections.api.tuple.Pair}, {@link org.eclipse.collections.api.tuple.Twin},
* {@link org.eclipse.collections.api.tuple.Triple} and {@link org.eclipse.collections.api.tuple.Triplet} interfaces.
* <p>
* A tuple is a container that holds two related objects.
* <p>
Expand Down

0 comments on commit 8589a4a

Please sign in to comment.