(doc) Fix typos in classes of tuple package
This commit is contained in:
parent
6850d88880
commit
9ea0063bc9
|
@ -62,7 +62,7 @@ public final class ImmutablePair<L, R> extends Pair<L, R> {
|
|||
public final R right;
|
||||
|
||||
/**
|
||||
* <p>Obtains an immutable pair of from two objects inferring the generic types.</p>
|
||||
* <p>Obtains an immutable pair of two objects inferring the generic types.</p>
|
||||
*
|
||||
* <p>This factory allows the pair to be created using inference to
|
||||
* obtain the generic types.</p>
|
||||
|
|
|
@ -66,7 +66,7 @@ public final class ImmutableTriple<L, M, R> extends Triple<L, M, R> {
|
|||
public final R right;
|
||||
|
||||
/**
|
||||
* <p>Obtains an immutable triple of from three objects inferring the generic types.</p>
|
||||
* <p>Obtains an immutable triple of three objects inferring the generic types.</p>
|
||||
*
|
||||
* <p>This factory allows the triple to be created using inference to
|
||||
* obtain the generic types.</p>
|
||||
|
|
|
@ -37,7 +37,7 @@ public class MutablePair<L, R> extends Pair<L, R> {
|
|||
public R right;
|
||||
|
||||
/**
|
||||
* <p>Obtains an immutable pair of from two objects inferring the generic types.</p>
|
||||
* <p>Obtains a mutable pair of two objects inferring the generic types.</p>
|
||||
*
|
||||
* <p>This factory allows the pair to be created using inference to
|
||||
* obtain the generic types.</p>
|
||||
|
|
|
@ -40,7 +40,7 @@ public class MutableTriple<L, M, R> extends Triple<L, M, R> {
|
|||
public R right;
|
||||
|
||||
/**
|
||||
* <p>Obtains an mutable triple of three objects inferring the generic types.</p>
|
||||
* <p>Obtains a mutable triple of three objects inferring the generic types.</p>
|
||||
*
|
||||
* <p>This factory allows the triple to be created using inference to
|
||||
* obtain the generic types.</p>
|
||||
|
|
|
@ -44,7 +44,7 @@ public abstract class Pair<L, R> implements Map.Entry<L, R>, Comparable<Pair<L,
|
|||
private static final long serialVersionUID = 4954918890077093841L;
|
||||
|
||||
/**
|
||||
* <p>Obtains an immutable pair of from two objects inferring the generic types.</p>
|
||||
* <p>Obtains an immutable pair of two objects inferring the generic types.</p>
|
||||
*
|
||||
* <p>This factory allows the pair to be created using inference to
|
||||
* obtain the generic types.</p>
|
||||
|
|
|
@ -43,7 +43,7 @@ public abstract class Triple<L, M, R> implements Comparable<Triple<L, M, R>>, Se
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* <p>Obtains an immutable triple of from three objects inferring the generic types.</p>
|
||||
* <p>Obtains an immutable triple of three objects inferring the generic types.</p>
|
||||
*
|
||||
* <p>This factory allows the triple to be created using inference to
|
||||
* obtain the generic types.</p>
|
||||
|
|
Loading…
Reference in New Issue