aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMark Hamstra <markhamstra@gmail.com>2013-03-16 15:25:02 -0700
committerMark Hamstra <markhamstra@gmail.com>2013-03-16 15:25:02 -0700
commit9784fc1fcd88dc11dda6cf5a6e44e49c49f1143a (patch)
tree1be77d64f20d32e2085d06a30b8005c18501e78c /core
parent80fc8c82ed3d7c16aa722bdf8ba60e1f2a763c29 (diff)
downloadspark-9784fc1fcd88dc11dda6cf5a6e44e49c49f1143a.tar.gz
spark-9784fc1fcd88dc11dda6cf5a6e44e49c49f1143a.tar.bz2
spark-9784fc1fcd88dc11dda6cf5a6e44e49c49f1143a.zip
fix wayward comma in doc comment
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/RDD.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/spark/RDD.scala b/core/src/main/scala/spark/RDD.scala
index 96d5c0b80c..dd54c6a123 100644
--- a/core/src/main/scala/spark/RDD.scala
+++ b/core/src/main/scala/spark/RDD.scala
@@ -365,7 +365,7 @@ abstract class RDD[T: ClassManifest](
new MapPartitionsWithIndexRDD(this, sc.clean(f), preservesPartitioning)
/**
- * Maps f over this RDD where, f takes an additional parameter of type A. This
+ * 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
* partition with the index of that partition.
*/