aboutsummaryrefslogtreecommitdiff
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:33 -0700
commita0624e853e189b53e8bde29decd73c8d6c7454b3 (patch)
tree4f9590021e90e824bacf13dad633d1123156bb9e
parent7611840f2d97a9fac585581eac46b9a0162df730 (diff)
downloadspark-a0624e853e189b53e8bde29decd73c8d6c7454b3.tar.gz
spark-a0624e853e189b53e8bde29decd73c8d6c7454b3.tar.bz2
spark-a0624e853e189b53e8bde29decd73c8d6c7454b3.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 (cherry picked from commit 0d01e85f42f3c997df7fee942b05b509968bac4b) Signed-off-by: Patrick Wendell <pwendell@gmail.com>
-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 d84055bb22..c04c3fac91 100644
--- a/docs/programming-guide.md
+++ b/docs/programming-guide.md
@@ -661,7 +661,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
@@ -695,7 +695,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
@@ -732,7 +732,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)`.