From d9f1b897a28aeac97ff8d15948d3bc566021c53e Mon Sep 17 00:00:00 2001 From: pascalschumacher Date: Sat, 16 Jun 2018 23:12:03 +0200 Subject: [PATCH] Fraction#getFraction: Replace "the the" with "the" in javadoc --- src/main/java/org/apache/commons/lang3/math/Fraction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0924ac913..e849dcdbf 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 static Fraction getReducedFraction(int numerator, int denominator) { * @throws ArithmeticException if |value| > Integer.MAX_VALUE * or value = NaN * @throws ArithmeticException if the calculated denominator is zero - * @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;