@@ -121,7 +121,7 @@ class PairRDDFunctions[K, V](self: RDD[(K, V)])
121121 /**
122122 * Aggregate the values of each key, using given combine functions and a neutral "zero value".
123123 * This function can return a different result type, U, than the type of the values in this RDD,
124- * V. Thus, we need one operation for merging a T into a U and one operation for merging two U's,
124+ * V. Thus, we need one operation for merging a V into a U and one operation for merging two U's,
125125 * as in scala.TraversableOnce. The former operation is used for merging values within a partition,
126126 * and the latter is used for merging values between partitions. To avoid memory allocation, both
127127 * of these functions are allowed to modify and return their first argument instead of creating a
@@ -143,7 +143,7 @@ class PairRDDFunctions[K, V](self: RDD[(K, V)])
143143 /**
144144 * Aggregate the values of each key, using given combine functions and a neutral "zero value".
145145 * This function can return a different result type, U, than the type of the values in this RDD,
146- * V. Thus, we need one operation for merging a T into a U and one operation for merging two U's,
146+ * V. Thus, we need one operation for merging a V into a U and one operation for merging two U's,
147147 * as in scala.TraversableOnce. The former operation is used for merging values within a partition,
148148 * and the latter is used for merging values between partitions. To avoid memory allocation, both
149149 * of these functions are allowed to modify and return their first argument instead of creating a
@@ -157,7 +157,7 @@ class PairRDDFunctions[K, V](self: RDD[(K, V)])
157157 /**
158158 * Aggregate the values of each key, using given combine functions and a neutral "zero value".
159159 * This function can return a different result type, U, than the type of the values in this RDD,
160- * V. Thus, we need one operation for merging a T into a U and one operation for merging two U's,
160+ * V. Thus, we need one operation for merging a V into a U and one operation for merging two U's,
161161 * as in scala.TraversableOnce. The former operation is used for merging values within a partition,
162162 * and the latter is used for merging values between partitions. To avoid memory allocation, both
163163 * of these functions are allowed to modify and return their first argument instead of creating a
0 commit comments