From 91f0d2a12c1c07ef4e958d18bd03f8a49ead4076 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Fri, 4 Jan 2008 12:46:21 +0000 Subject: [PATCH] javadoc typos git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@608819 13f79535-47bb-0310-9956-ffa450edef68 --- .../stat/descriptive/SynchronizedDescriptiveStatistics.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/stat/descriptive/SynchronizedDescriptiveStatistics.java b/src/java/org/apache/commons/math/stat/descriptive/SynchronizedDescriptiveStatistics.java index d531547ec..6817d63a0 100644 --- a/src/java/org/apache/commons/math/stat/descriptive/SynchronizedDescriptiveStatistics.java +++ b/src/java/org/apache/commons/math/stat/descriptive/SynchronizedDescriptiveStatistics.java @@ -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. *