aboutsummaryrefslogtreecommitdiff
path: root/graphx
diff options
context:
space:
mode:
authorJacek Laskowski <jacek@japila.pl>2016-04-26 11:51:12 +0100
committerSean Owen <sowen@cloudera.com>2016-04-26 11:51:12 +0100
commitb208229ba1768ee72eae7b6b0da0ac9ccff3be62 (patch)
tree91f9b31a53a04b246695f54b64a2142f34ad7dd7 /graphx
parentde6e633420aba1fe5d806a2725a95e610699ae7d (diff)
downloadspark-b208229ba1768ee72eae7b6b0da0ac9ccff3be62.tar.gz
spark-b208229ba1768ee72eae7b6b0da0ac9ccff3be62.tar.bz2
spark-b208229ba1768ee72eae7b6b0da0ac9ccff3be62.zip
[MINOR][DOCS] Minor typo fixes
## What changes were proposed in this pull request? Minor typo fixes (too minor to deserve separate a JIRA) ## How was this patch tested? local build Author: Jacek Laskowski <jacek@japila.pl> Closes #12469 from jaceklaskowski/minor-typo-fixes.
Diffstat (limited to 'graphx')
-rw-r--r--graphx/src/main/scala/org/apache/spark/graphx/Graph.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala b/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
index 5485e30f5a..922ec7955f 100644
--- a/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
+++ b/graphx/src/main/scala/org/apache/spark/graphx/Graph.scala
@@ -365,7 +365,7 @@ abstract class Graph[VD: ClassTag, ED: ClassTag] protected () extends Serializab
*
* @note By expressing computation at the edge level we achieve
* maximum parallelism. This is one of the core functions in the
- * Graph API in that enables neighborhood level computation. For
+ * Graph API that enables neighborhood level computation. For
* example this function can be used to count neighbors satisfying a
* predicate or implement PageRank.
*