Skip to content
Snippets Groups Projects
Commit b4588549 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Fix some review comments

parent 170b3869
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ The following table summarizes terms you'll see used to refer to cluster concept
<tbody>
<tr>
<td>Application</td>
<td>Any user program invoking Spark</td>
<td>User program built on Spark. Consists of a <em>driver program</em> and <em>executors</em> on the cluster.</td>
</tr>
<tr>
<td>Driver program</td>
......
......@@ -36,7 +36,7 @@ scala> textFile.count() // Number of items in this RDD
res0: Long = 74
scala> textFile.first() // First item in this RDD
res1: String = Welcome to the Spark documentation!
res1: String = # Apache Spark
{% endhighlight %}
Now let's use a transformation. We will use the [`filter`](scala-programming-guide.html#transformations) transformation to return a new RDD with a subset of the items in the file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment