aboutsummaryrefslogtreecommitdiff
path: root/docs/programming-guide.md
diff options
context:
space:
mode:
authorCesar Arevalo <cesar@zephyrhealthinc.com>2014-07-19 20:20:07 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-07-19 20:20:07 -0700
commit0d01e85f42f3c997df7fee942b05b509968bac4b (patch)
treeb310b5433c9d3157eda4279a6af90234f602763b /docs/programming-guide.md
parentd39e3b9673027bb9f4d1542e5a2386f73078eec0 (diff)
downloadspark-0d01e85f42f3c997df7fee942b05b509968bac4b.tar.gz
spark-0d01e85f42f3c997df7fee942b05b509968bac4b.tar.bz2
spark-0d01e85f42f3c997df7fee942b05b509968bac4b.zip
Typo fix to the programming guide in the docs
Typo fix to the programming guide in the docs. Changed the word "distibuted" to "distributed". Author: Cesar Arevalo <cesar@zephyrhealthinc.com> Closes #1495 from cesararevalo/master and squashes the following commits: 0c2e3a7 [Cesar Arevalo] Typo fix to the programming guide in the docs
Diffstat (limited to 'docs/programming-guide.md')
-rw-r--r--docs/programming-guide.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/programming-guide.md b/docs/programming-guide.md
index b09d6347cd..90c6971301 100644
--- a/docs/programming-guide.md
+++ b/docs/programming-guide.md
@@ -739,7 +739,7 @@ def doStuff(self, rdd):
While most Spark operations work on RDDs containing any type of objects, a few special operations are
only available on RDDs of key-value pairs.
-The most common ones are distibuted "shuffle" operations, such as grouping or aggregating the elements
+The most common ones are distributed "shuffle" operations, such as grouping or aggregating the elements
by a key.
In Scala, these operations are automatically available on RDDs containing
@@ -773,7 +773,7 @@ documentation](http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html#ha
While most Spark operations work on RDDs containing any type of objects, a few special operations are
only available on RDDs of key-value pairs.
-The most common ones are distibuted "shuffle" operations, such as grouping or aggregating the elements
+The most common ones are distributed "shuffle" operations, such as grouping or aggregating the elements
by a key.
In Java, key-value pairs are represented using the
@@ -810,7 +810,7 @@ documentation](http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html#ha
While most Spark operations work on RDDs containing any type of objects, a few special operations are
only available on RDDs of key-value pairs.
-The most common ones are distibuted "shuffle" operations, such as grouping or aggregating the elements
+The most common ones are distributed "shuffle" operations, such as grouping or aggregating the elements
by a key.
In Python, these operations work on RDDs containing built-in Python tuples such as `(1, 2)`.