From a112d69fdcd9f6d8805be6e0bc6d2211e26867c2 Mon Sep 17 00:00:00 2001 From: Lukasz Piepiora Date: Sun, 18 Oct 2015 14:25:57 +0100 Subject: [SPARK-11174] [DOCS] Fix typo in the GraphX programming guide This patch fixes a small typo in the GraphX programming guide Author: Lukasz Piepiora Closes #9160 from lpiepiora/11174-fix-typo-in-graphx-programming-guide. --- docs/graphx-programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/graphx-programming-guide.md') 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] -- cgit v1.2.3