From 60a91b3b59513b00a3afaa5a7621ee17eb6ee425 Mon Sep 17 00:00:00 2001 From: Andy Konwinski Date: Fri, 12 Apr 2013 12:32:58 -0700 Subject: Update quick-start.md heading on Operations (not just Transformations). --- docs/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/quick-start.md') 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) -- cgit v1.2.3