You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2018/06/16 21:12:21 UTC

[lang] Fraction#getFraction: Replace "the the" with "the" in javadoc

Repository: commons-lang
Updated Branches:
  refs/heads/master 70be8e514 -> d9f1b897a


Fraction#getFraction: Replace "the the" with "the" in javadoc


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/d9f1b897
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/d9f1b897
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/d9f1b897

Branch: refs/heads/master
Commit: d9f1b897a28aeac97ff8d15948d3bc566021c53e
Parents: 70be8e5
Author: pascalschumacher <pa...@gmx.net>
Authored: Sat Jun 16 23:12:03 2018 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sat Jun 16 23:12:03 2018 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/math/Fraction.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/d9f1b897/src/main/java/org/apache/commons/lang3/math/Fraction.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/lang3/math/Fraction.java b/src/main/java/org/apache/commons/lang3/math/Fraction.java
index 0924ac9..e849dcd 100644
--- a/src/main/java/org/apache/commons/lang3/math/Fraction.java
+++ b/src/main/java/org/apache/commons/lang3/math/Fraction.java
@@ -243,7 +243,7 @@ public final class Fraction extends Number implements Comparable<Fraction> {
      * @throws ArithmeticException if <code>|value| &gt; Integer.MAX_VALUE</code>
      *  or <code>value = NaN</code>
      * @throws ArithmeticException if the calculated denominator is <code>zero</code>
-     * @throws ArithmeticException if the the algorithm does not converge
+     * @throws ArithmeticException if the algorithm does not converge
      */
     public static Fraction getFraction(double value) {
         final int sign = value < 0 ? -1 : 1;