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

This commit is contained in:
pascalschumacher 2018-06-16 23:12:03 +02:00
parent 70be8e5148
commit d9f1b897a2
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ public static Fraction getReducedFraction(int numerator, int denominator) {
* @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;