aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukasz Piepiora <lpiepiora@gmail.com>2015-10-18 14:25:57 +0100
committerSean Owen <sowen@cloudera.com>2015-10-18 14:25:57 +0100
commita112d69fdcd9f6d8805be6e0bc6d2211e26867c2 (patch)
treea4b77d94ded5bb44faa8efc13a6ea6492a3c7f78
parent3895b2113a726171b3c9c04fe41b3cc93d6d14b5 (diff)
downloadspark-a112d69fdcd9f6d8805be6e0bc6d2211e26867c2.tar.gz
spark-a112d69fdcd9f6d8805be6e0bc6d2211e26867c2.tar.bz2
spark-a112d69fdcd9f6d8805be6e0bc6d2211e26867c2.zip
[SPARK-11174] [DOCS] Fix typo in the GraphX programming guide
This patch fixes a small typo in the GraphX programming guide Author: Lukasz Piepiora <lpiepiora@gmail.com> Closes #9160 from lpiepiora/11174-fix-typo-in-graphx-programming-guide.
-rw-r--r--docs/graphx-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/graphx-programming-guide.md b/docs/graphx-programming-guide.md
index c861a763d6..6a512ab234 100644
--- a/docs/graphx-programming-guide.md
+++ b/docs/graphx-programming-guide.md
@@ -944,7 +944,7 @@ The three additional functions exposed by the `EdgeRDD` are:
{% highlight scala %}
// Transform the edge attributes while preserving the structure
def mapValues[ED2](f: Edge[ED] => ED2): EdgeRDD[ED2]
-// Revere the edges reusing both attributes and structure
+// Reverse the edges reusing both attributes and structure
def reverse: EdgeRDD[ED]
// Join two `EdgeRDD`s partitioned using the same partitioning strategy.
def innerJoin[ED2, ED3](other: EdgeRDD[ED2])(f: (VertexId, VertexId, ED, ED2) => ED3): EdgeRDD[ED3]