diff --git a/src/java/org/apache/commons/math/stat/StoreUnivariate.java b/src/java/org/apache/commons/math/stat/StoreUnivariate.java index a24a0332b..58b8698d2 100644 --- a/src/java/org/apache/commons/math/stat/StoreUnivariate.java +++ b/src/java/org/apache/commons/math/stat/StoreUnivariate.java @@ -140,19 +140,19 @@ public interface StoreUnivariate extends Univariate { public abstract double getElement(int index); /** - * Returns an estimate for the pth percentile of the stored values, - * following the interpolation-adjusted defintion presented - * here

- * + * Returns an estimate for the pth percentile of the stored values. + * This estimate follows the interpolation-adjusted defintion presented + * here + *

* Preconditions:

* * @param p the requested percentile (scaled from 0 - 100) - * @return returns an estimate for the pth percentile of the stored data + * @return An estimate for the pth percentile of the stored data * values */ public abstract double getPercentile(double p);