Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 59899 invoked from network); 25 Sep 2010 14:58:21 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 Sep 2010 14:58:21 -0000 Received: (qmail 2561 invoked by uid 500); 25 Sep 2010 14:58:21 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 2191 invoked by uid 500); 25 Sep 2010 14:58:17 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 2179 invoked by uid 99); 25 Sep 2010 14:58:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Sep 2010 14:58:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Sep 2010 14:58:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 53F9023889B3; Sat, 25 Sep 2010 14:57:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1001229 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/AggregateSummaryStatistics.java Date: Sat, 25 Sep 2010 14:57:55 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100925145755.53F9023889B3@eris.apache.org> Author: psteitz Date: Sat Sep 25 14:57:54 2010 New Revision: 1001229 URL: http://svn.apache.org/viewvc?rev=1001229&view=rev Log: Fixed javadoc typo. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/AggregateSummaryStatistics.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/AggregateSummaryStatistics.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/AggregateSummaryStatistics.java?rev=1001229&r1=1001228&r2=1001229&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/AggregateSummaryStatistics.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/AggregateSummaryStatistics.java Sat Sep 25 14:57:54 2010 @@ -43,7 +43,7 @@ import java.util.Iterator; * {@link SummaryStatistics#addValue(double)} methods must synchronize on the aggregating * instance maintained by this class. In multithreaded environments, if the functionality * provided by {@link #aggregate(Collection)} is adequate, that method should be used - * to avoid unecessary computation and synchronization delays.

+ * to avoid unnecessary computation and synchronization delays.

* * @since 2.0 * @version $Revision$ $Date$