javadoc typos

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@608819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-01-04 12:46:21 +00:00
parent dc990d3a97
commit 91f0d2a12c
1 changed files with 2 additions and 2 deletions

View File

@ -19,10 +19,10 @@ package org.apache.commons.math.stat.descriptive;
/**
* Implementation of
* {@link org.apache.commons.math.stat.descriptive.DescriptiveStatistics} that
* is safe to use in a mulithreaded environment. Multiple threads can safely
* is safe to use in a multithreaded environment. Multiple threads can safely
* operate on a single instance without causing runtime exceptions due to race
* conditions. In effect, this implementation makes modification and access
* methods atomic operations for a signle instance. That is to say, as one
* methods atomic operations for a single instance. That is to say, as one
* thread is computing a statistic from the instance, no other thread can modify
* the instance nor compute another statistic.
*