From 4ae0245ff6872dda0bbda33b6d296cd7c3ea1bc2 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Tue, 11 Nov 2008 17:24:21 +0000 Subject: [PATCH] fixed typo git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@713088 13f79535-47bb-0310-9956-ffa450edef68 --- .../math/stat/descriptive/StorelessUnivariateStatistic.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/stat/descriptive/StorelessUnivariateStatistic.java b/src/java/org/apache/commons/math/stat/descriptive/StorelessUnivariateStatistic.java index 49899b661..1de538d64 100644 --- a/src/java/org/apache/commons/math/stat/descriptive/StorelessUnivariateStatistic.java +++ b/src/java/org/apache/commons/math/stat/descriptive/StorelessUnivariateStatistic.java @@ -38,7 +38,7 @@ public interface StorelessUnivariateStatistic extends UnivariateStatistic { /** * Updates the internal state of the statistic to reflect addition of * all values in the values array. Does not clear the statistic first -- - * i.e., the values are added incrementally to the dataset. + * i.e., the values are added incrementally to the dataset. * * @param values array holding the new values to add * @throws IllegalArgumentException if the array is null @@ -49,7 +49,7 @@ public interface StorelessUnivariateStatistic extends UnivariateStatistic { * Updates the internal state of the statistic to reflect addition of * the values in the designated portion of the values array. Does not * clear the statistic first -- i.e., the values are added - * incrementally to the dataset. + * incrementally to the dataset. * * @param values array holding the new values to add * @param start the array index of the first value to add