@@ -366,7 +366,7 @@ abstract class RDD[T: ClassManifest](
366
366
367
367
/**
368
368
* Maps f over this RDD, where f takes an additional parameter of type A. This
369
- * additional parameter is produced by constructorOfA , which is called in each
369
+ * additional parameter is produced by constructA , which is called in each
370
370
* partition with the index of that partition.
371
371
*/
372
372
def mapWith [A : ClassManifest , U : ClassManifest ](constructA : Int => A , preservesPartitioning : Boolean = false )
@@ -380,7 +380,7 @@ abstract class RDD[T: ClassManifest](
380
380
381
381
/**
382
382
* FlatMaps f over this RDD, where f takes an additional parameter of type A. This
383
- * additional parameter is produced by constructorOfA , which is called in each
383
+ * additional parameter is produced by constructA , which is called in each
384
384
* partition with the index of that partition.
385
385
*/
386
386
def flatMapWith [A : ClassManifest , U : ClassManifest ](constructA : Int => A , preservesPartitioning : Boolean = false )
@@ -394,7 +394,7 @@ abstract class RDD[T: ClassManifest](
394
394
395
395
/**
396
396
* Applies f to each element of this RDD, where f takes an additional parameter of type A.
397
- * This additional parameter is produced by constructorOfA , which is called in each
397
+ * This additional parameter is produced by constructA , which is called in each
398
398
* partition with the index of that partition.
399
399
*/
400
400
def foreachWith [A : ClassManifest ](constructA : Int => A )
@@ -408,7 +408,7 @@ abstract class RDD[T: ClassManifest](
408
408
409
409
/**
410
410
* Filters this RDD with p, where p takes an additional parameter of type A. This
411
- * additional parameter is produced by constructorOfA , which is called in each
411
+ * additional parameter is produced by constructA , which is called in each
412
412
* partition with the index of that partition.
413
413
*/
414
414
def filterWith [A : ClassManifest ](constructA : Int => A )
0 commit comments