aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorLiang-Chi Hsieh <viirya@gmail.com>2014-08-23 10:08:25 -0700
committerJosh Rosen <joshrosen@apache.org>2014-08-23 10:08:25 -0700
commit76bb044b9e327639002034ad4c06e6bd8e20d018 (patch)
tree99dcaa86adea08e81d7f232123a6c35bf1196d2a /core
parentf3d65cd0bf34d8c362da492472c61796ef059428 (diff)
downloadspark-76bb044b9e327639002034ad4c06e6bd8e20d018.tar.gz
spark-76bb044b9e327639002034ad4c06e6bd8e20d018.tar.bz2
spark-76bb044b9e327639002034ad4c06e6bd8e20d018.zip
[Minor] fix typo
Fix a typo in comment. Author: Liang-Chi Hsieh <viirya@gmail.com> Closes #2105 from viirya/fix_typo and squashes the following commits: 6596a80 [Liang-Chi Hsieh] fix typo.
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/org/apache/spark/partial/SumEvaluator.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/org/apache/spark/partial/SumEvaluator.scala b/core/src/main/scala/org/apache/spark/partial/SumEvaluator.scala
index a74f800944..d533628457 100644
--- a/core/src/main/scala/org/apache/spark/partial/SumEvaluator.scala
+++ b/core/src/main/scala/org/apache/spark/partial/SumEvaluator.scala
@@ -22,7 +22,7 @@ import cern.jet.stat.Probability
import org.apache.spark.util.StatCounter
/**
- * An ApproximateEvaluator for sums. It estimates the mean and the cont and multiplies them
+ * An ApproximateEvaluator for sums. It estimates the mean and the count and multiplies them
* together, then uses the formula for the variance of two independent random variables to get
* a variance for the result and compute a confidence interval.
*/