Repository: spark
Updated Branches:
  refs/heads/master 3895b2113 -> a112d69fd


[SPARK-11174] [DOCS] Fix typo in the GraphX programming guide

This patch fixes a small typo in the GraphX programming guide

Author: Lukasz Piepiora <[email protected]>

Closes #9160 from lpiepiora/11174-fix-typo-in-graphx-programming-guide.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a112d69f
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a112d69f
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a112d69f

Branch: refs/heads/master
Commit: a112d69fdcd9f6d8805be6e0bc6d2211e26867c2
Parents: 3895b21
Author: Lukasz Piepiora <[email protected]>
Authored: Sun Oct 18 14:25:57 2015 +0100
Committer: Sean Owen <[email protected]>
Committed: Sun Oct 18 14:25:57 2015 +0100

----------------------------------------------------------------------
 docs/graphx-programming-guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/a112d69f/docs/graphx-programming-guide.md
----------------------------------------------------------------------
diff --git a/docs/graphx-programming-guide.md b/docs/graphx-programming-guide.md
index c861a763..6a512ab 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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to