@@ -215,13 +215,13 @@ class JavaPairRDD[K, V](val rdd: RDD[(K, V)])
215215 /**
216216 * Generic function to combine the elements for each key using a custom set of aggregation
217217 * functions. Turns a JavaPairRDD[(K, V)] into a result of type JavaPairRDD[(K, C)], for a
218- * "combined type" C * Note that V and C can be different -- for example, one might group an
218+ * "combined type" C. Note that V and C can be different -- for example, one might group an
219219 * RDD of type (Int, Int) into an RDD of type (Int, List[Int]). Users provide three
220220 * functions:
221221 *
222- * - `createCombiner`, which turns a V into a C (e.g., creates a one-element list)
223- * - `mergeValue`, to merge a V into a C (e.g., adds it to the end of a list)
224- * - `mergeCombiners`, to combine two C's into a single one.
222+ * - `createCombiner`, which turns a V into a C (e.g., creates a one-element list)
223+ * - `mergeValue`, to merge a V into a C (e.g., adds it to the end of a list)
224+ * - `mergeCombiners`, to combine two C's into a single one.
225225 *
226226 * In addition, users can control the partitioning of the output RDD, the serializer that is use
227227 * for the shuffle, and whether to perform map-side aggregation (if a mapper can produce multiple
@@ -247,13 +247,13 @@ class JavaPairRDD[K, V](val rdd: RDD[(K, V)])
247247 /**
248248 * Generic function to combine the elements for each key using a custom set of aggregation
249249 * functions. Turns a JavaPairRDD[(K, V)] into a result of type JavaPairRDD[(K, C)], for a
250- * "combined type" C * Note that V and C can be different -- for example, one might group an
250+ * "combined type" C. Note that V and C can be different -- for example, one might group an
251251 * RDD of type (Int, Int) into an RDD of type (Int, List[Int]). Users provide three
252252 * functions:
253253 *
254- * - `createCombiner`, which turns a V into a C (e.g., creates a one-element list)
255- * - `mergeValue`, to merge a V into a C (e.g., adds it to the end of a list)
256- * - `mergeCombiners`, to combine two C's into a single one.
254+ * - `createCombiner`, which turns a V into a C (e.g., creates a one-element list)
255+ * - `mergeValue`, to merge a V into a C (e.g., adds it to the end of a list)
256+ * - `mergeCombiners`, to combine two C's into a single one.
257257 *
258258 * In addition, users can control the partitioning of the output RDD. This method automatically
259259 * uses map-side aggregation in shuffling the RDD.
0 commit comments