aboutsummaryrefslogtreecommitdiff
path: root/docs/quick-start.md
diff options
context:
space:
mode:
authorAndy Konwinski <andyk@berkeley.edu>2013-04-12 12:32:58 -0700
committerAndy Konwinski <andyk@berkeley.edu>2013-04-12 12:34:51 -0700
commit60a91b3b59513b00a3afaa5a7621ee17eb6ee425 (patch)
tree21f6651efe5ee002cd267deb9b98b1bbc10ae82a /docs/quick-start.md
parent077ae0a1974c37fa3038e3e1920ce6c3054cde78 (diff)
downloadspark-60a91b3b59513b00a3afaa5a7621ee17eb6ee425.tar.gz
spark-60a91b3b59513b00a3afaa5a7621ee17eb6ee425.tar.bz2
spark-60a91b3b59513b00a3afaa5a7621ee17eb6ee425.zip
Update quick-start.md heading on Operations (not just Transformations).
Diffstat (limited to 'docs/quick-start.md')
-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)