diff --git a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java index 592bf3d7f..7c865ad52 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java +++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutablePair.java @@ -62,7 +62,7 @@ public final class ImmutablePair extends Pair { public final R right; /** - *

Obtains an immutable pair of from two objects inferring the generic types.

+ *

Obtains an immutable pair of two objects inferring the generic types.

* *

This factory allows the pair to be created using inference to * obtain the generic types.

diff --git a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java index 725f7212b..3fd152bfe 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java +++ b/src/main/java/org/apache/commons/lang3/tuple/ImmutableTriple.java @@ -66,7 +66,7 @@ public final class ImmutableTriple extends Triple { public final R right; /** - *

Obtains an immutable triple of from three objects inferring the generic types.

+ *

Obtains an immutable triple of three objects inferring the generic types.

* *

This factory allows the triple to be created using inference to * obtain the generic types.

diff --git a/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java b/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java index 466571700..386988bf0 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java +++ b/src/main/java/org/apache/commons/lang3/tuple/MutablePair.java @@ -37,7 +37,7 @@ public class MutablePair extends Pair { public R right; /** - *

Obtains an immutable pair of from two objects inferring the generic types.

+ *

Obtains a mutable pair of two objects inferring the generic types.

* *

This factory allows the pair to be created using inference to * obtain the generic types.

diff --git a/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java b/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java index bb695dd98..f5d92be76 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java +++ b/src/main/java/org/apache/commons/lang3/tuple/MutableTriple.java @@ -40,7 +40,7 @@ public class MutableTriple extends Triple { public R right; /** - *

Obtains an mutable triple of three objects inferring the generic types.

+ *

Obtains a mutable triple of three objects inferring the generic types.

* *

This factory allows the triple to be created using inference to * obtain the generic types.

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 5740f4e24..55f1f8ac3 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/Pair.java +++ b/src/main/java/org/apache/commons/lang3/tuple/Pair.java @@ -44,7 +44,7 @@ public abstract class Pair implements Map.Entry, ComparableObtains an immutable pair of from two objects inferring the generic types.

+ *

Obtains an immutable pair of two objects inferring the generic types.

* *

This factory allows the pair to be created using inference to * obtain the generic types.

diff --git a/src/main/java/org/apache/commons/lang3/tuple/Triple.java b/src/main/java/org/apache/commons/lang3/tuple/Triple.java index 2f4041e92..c139a6c27 100644 --- a/src/main/java/org/apache/commons/lang3/tuple/Triple.java +++ b/src/main/java/org/apache/commons/lang3/tuple/Triple.java @@ -43,7 +43,7 @@ public abstract class Triple implements Comparable>, Se private static final long serialVersionUID = 1L; /** - *

Obtains an immutable triple of from three objects inferring the generic types.

+ *

Obtains an immutable triple of three objects inferring the generic types.

* *

This factory allows the triple to be created using inference to * obtain the generic types.