aboutsummaryrefslogtreecommitdiff
path: root/graph/src
diff options
context:
space:
mode:
authorAnkur Dave <ankurdave@gmail.com>2013-12-14 17:08:04 -0800
committerAnkur Dave <ankurdave@gmail.com>2013-12-14 17:08:04 -0800
commit0459747c1c146f036f99b38a0db75372257e41a1 (patch)
tree497fa7371393ef5531c2c4a285a53beaa4f3782b /graph/src
parent1ad3d240b09849e389dce0fae578736f96978e36 (diff)
downloadspark-0459747c1c146f036f99b38a0db75372257e41a1.tar.gz
spark-0459747c1c146f036f99b38a0db75372257e41a1.tar.bz2
spark-0459747c1c146f036f99b38a0db75372257e41a1.zip
Fix typo
Diffstat (limited to 'graph/src')
-rw-r--r--graph/src/main/scala/org/apache/spark/graph/VertexRDD.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph/src/main/scala/org/apache/spark/graph/VertexRDD.scala b/graph/src/main/scala/org/apache/spark/graph/VertexRDD.scala
index 65164e842f..90ac6dc61d 100644
--- a/graph/src/main/scala/org/apache/spark/graph/VertexRDD.scala
+++ b/graph/src/main/scala/org/apache/spark/graph/VertexRDD.scala
@@ -288,7 +288,7 @@ class VertexRDD[@specialized VD: ClassManifest](
/**
* Replace vertices with corresponding vertices in `other`, and drop vertices without a
- * corresponding vertex in `other.
+ * corresponding vertex in `other`.
*/
def innerJoin[U: ClassManifest, VD2: ClassManifest](other: RDD[(Vid, U)])
(f: (Vid, VD, U) => VD2): VertexRDD[VD2] = {