aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-04-12 20:55:22 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-04-12 20:55:22 -0700
commit7c10b3e3cdabd834b6a6e86a34c809be54a05950 (patch)
tree21f6651efe5ee002cd267deb9b98b1bbc10ae82a
parent077ae0a1974c37fa3038e3e1920ce6c3054cde78 (diff)
parent60a91b3b59513b00a3afaa5a7621ee17eb6ee425 (diff)
downloadspark-7c10b3e3cdabd834b6a6e86a34c809be54a05950.tar.gz
spark-7c10b3e3cdabd834b6a6e86a34c809be54a05950.tar.bz2
spark-7c10b3e3cdabd834b6a6e86a34c809be54a05950.zip
Merge pull request #565 from andyk/master
Update wording of section on RDD operations in quick start guide in docs
-rw-r--r--docs/quick-start.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick-start.md b/docs/quick-start.md
index 5c80d2ed3a..2d961b29cb 100644
--- a/docs/quick-start.md
+++ b/docs/quick-start.md
@@ -53,8 +53,8 @@ scala> textFile.filter(line => line.contains("Spark")).count() // How many lines
res3: Long = 15
{% endhighlight %}
-## Transformations
-RDD transformations can be used for more complex computations. Let's say we want to find the line with the most words:
+## More On RDD Operations
+RDD actions and transformations can be used for more complex computations. Let's say we want to find the line with the most words:
{% highlight scala %}
scala> textFile.map(line => line.split(" ").size).reduce((a, b) => if (a > b) a else b)