diff --git a/src/main/java/org/apache/commons/math3/util/ContinuedFraction.java b/src/main/java/org/apache/commons/math3/util/ContinuedFraction.java index ac78433f0..538467c1a 100644 --- a/src/main/java/org/apache/commons/math3/util/ContinuedFraction.java +++ b/src/main/java/org/apache/commons/math3/util/ContinuedFraction.java @@ -98,22 +98,19 @@ public abstract class ContinuedFraction { } /** - *

* Evaluates the continued fraction at the value x. - *

- * *

* The implementation of this method is based on the modified Lentz algorithm as described * on page 18 ff. in: *

- * Note: the implementation uses the terms ai and bi as defined in - * Continued Fraction / MathWorld. + * Note: the implementation uses the terms ai and bi as defined in + * Continued Fraction @ MathWorld. *

* * @param x the evaluation point.