Skip to content
Snippets Groups Projects
Commit 244cbbe3 authored by Imran Rashid's avatar Imran Rashid Committed by Matei Zaharia
Browse files

one more minor cleanup to scaladoc

parent 3b392c67
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ class Accumulable[T,R] ( ...@@ -25,7 +25,7 @@ class Accumulable[T,R] (
/** /**
* merge two accumulable objects together * merge two accumulable objects together
* <p> *
* Normally, a user will not want to use this version, but will instead call `+=`. * 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 * @param term the other Accumulable that will get merged with this
*/ */
...@@ -64,7 +64,7 @@ trait AccumulatorParam[T] extends AccumulableParam[T,T] { ...@@ -64,7 +64,7 @@ trait AccumulatorParam[T] extends AccumulableParam[T,T] {
/** /**
* A datatype that can be accumulated, ie. has a commutative & associative +. * 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 * 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 * 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 * always be the same, though -- eg., imagine you are accumulating a set. You will add items to the set, and you
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment