aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorImran Rashid <imran@quantifind.com>2012-07-16 18:26:48 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2012-07-28 20:16:10 -0700
commit244cbbe33a3f1e2566cde322eef2a02a11d35096 (patch)
tree61841532dd2666eab415ec7da48c1520cee526ad /core/src
parent3b392c67dbeb7b2267015ffbeb2aac70dfc01870 (diff)
downloadspark-244cbbe33a3f1e2566cde322eef2a02a11d35096.tar.gz
spark-244cbbe33a3f1e2566cde322eef2a02a11d35096.tar.bz2
spark-244cbbe33a3f1e2566cde322eef2a02a11d35096.zip
one more minor cleanup to scaladoc
Diffstat (limited to 'core/src')
-rw-r--r--core/src/main/scala/spark/Accumulators.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/scala/spark/Accumulators.scala b/core/src/main/scala/spark/Accumulators.scala
index 16e3657898..e63651fcb0 100644
--- a/core/src/main/scala/spark/Accumulators.scala
+++ b/core/src/main/scala/spark/Accumulators.scala
@@ -25,7 +25,7 @@ class Accumulable[T,R] (
/**
* merge two accumulable objects together
- * <p>
+ *
* Normally, a user will not want to use this version, but will instead call `+=`.
* @param term the other Accumulable that will get merged with this
*/
@@ -64,7 +64,7 @@ trait AccumulatorParam[T] extends AccumulableParam[T,T] {
/**
* A datatype that can be accumulated, ie. has a commutative & associative +.
- *
+ *
* You must define how to add data, and how to merge two of these together. For some datatypes, these might be
* the same operation (eg., a counter). In that case, you might want to use [[spark.AccumulatorParam]]. They won't
* always be the same, though -- eg., imagine you are accumulating a set. You will add items to the set, and you