aboutsummaryrefslogtreecommitdiff
path: root/docs/graphx-programming-guide.md
diff options
context:
space:
mode:
authorWeichenXu <WeichenXu123@outlook.com>2016-06-07 13:29:27 +0100
committerSean Owen <sowen@cloudera.com>2016-06-07 13:29:27 +0100
commit1e2c9311871968426e019164b129652fd6d0037f (patch)
treeb4feef8d01c4a0e4d3b998a54a54c12a1b46bc52 /docs/graphx-programming-guide.md
parent5f731d6859c4516941e5f90c99c966ef76268864 (diff)
downloadspark-1e2c9311871968426e019164b129652fd6d0037f.tar.gz
spark-1e2c9311871968426e019164b129652fd6d0037f.tar.bz2
spark-1e2c9311871968426e019164b129652fd6d0037f.zip
[MINOR] fix typo in documents
## What changes were proposed in this pull request? I use spell check tools checks typo in spark documents and fix them. ## How was this patch tested? N/A Author: WeichenXu <WeichenXu123@outlook.com> Closes #13538 from WeichenXu123/fix_doc_typo.
Diffstat (limited to 'docs/graphx-programming-guide.md')
-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 9dea9b5904..81cf17475f 100644
--- a/docs/graphx-programming-guide.md
+++ b/docs/graphx-programming-guide.md
@@ -132,7 +132,7 @@ var graph: Graph[VertexProperty, String] = null
Like RDDs, property graphs are immutable, distributed, and fault-tolerant. Changes to the values or
structure of the graph are accomplished by producing a new graph with the desired changes. Note
-that substantial parts of the original graph (i.e., unaffected structure, attributes, and indicies)
+that substantial parts of the original graph (i.e., unaffected structure, attributes, and indices)
are reused in the new graph reducing the cost of this inherently functional data structure. The
graph is partitioned across the executors using a range of vertex partitioning heuristics. As with
RDDs, each partition of the graph can be recreated on a different machine in the event of a failure.