aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMark Hamstra <markhamstra@gmail.com>2013-03-16 15:29:15 -0700
committerMark Hamstra <markhamstra@gmail.com>2013-03-16 15:29:15 -0700
commitab33e27cc9769157c62d940124b5091301bdc69a (patch)
treec54b5834731361b1be909eab074a59472c405e8d /core
parent9784fc1fcd88dc11dda6cf5a6e44e49c49f1143a (diff)
downloadspark-ab33e27cc9769157c62d940124b5091301bdc69a.tar.gz
spark-ab33e27cc9769157c62d940124b5091301bdc69a.tar.bz2
spark-ab33e27cc9769157c62d940124b5091301bdc69a.zip
constructorOfA -> constructA in doc comments
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/RDD.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/scala/spark/RDD.scala b/core/src/main/scala/spark/RDD.scala
index dd54c6a123..ed39732f13 100644
--- a/core/src/main/scala/spark/RDD.scala
+++ b/core/src/main/scala/spark/RDD.scala
@@ -366,7 +366,7 @@ abstract class RDD[T: ClassManifest](
/**
* Maps f over this RDD, where f takes an additional parameter of type A. This
- * additional parameter is produced by constructorOfA, which is called in each
+ * additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def mapWith[A: ClassManifest, U: ClassManifest](constructA: Int => A, preservesPartitioning: Boolean = false)
@@ -380,7 +380,7 @@ abstract class RDD[T: ClassManifest](
/**
* FlatMaps f over this RDD, where f takes an additional parameter of type A. This
- * additional parameter is produced by constructorOfA, which is called in each
+ * additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def flatMapWith[A: ClassManifest, U: ClassManifest](constructA: Int => A, preservesPartitioning: Boolean = false)
@@ -394,7 +394,7 @@ abstract class RDD[T: ClassManifest](
/**
* Applies f to each element of this RDD, where f takes an additional parameter of type A.
- * This additional parameter is produced by constructorOfA, which is called in each
+ * This additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def foreachWith[A: ClassManifest](constructA: Int => A)
@@ -408,7 +408,7 @@ abstract class RDD[T: ClassManifest](
/**
* Filters this RDD with p, where p takes an additional parameter of type A. This
- * additional parameter is produced by constructorOfA, which is called in each
+ * additional parameter is produced by constructA, which is called in each
* partition with the index of that partition.
*/
def filterWith[A: ClassManifest](constructA: Int => A)