aboutsummaryrefslogtreecommitdiff
path: root/docs/spark-standalone.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/spark-standalone.md')
-rw-r--r--docs/spark-standalone.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/spark-standalone.md b/docs/spark-standalone.md
index 5ae63fe4e6..1097f1fabe 100644
--- a/docs/spark-standalone.md
+++ b/docs/spark-standalone.md
@@ -298,9 +298,9 @@ application at a time. You can cap the number of cores by setting `spark.cores.m
{% highlight scala %}
val conf = new SparkConf()
- .setMaster(...)
- .setAppName(...)
- .set("spark.cores.max", "10")
+ .setMaster(...)
+ .setAppName(...)
+ .set("spark.cores.max", "10")
val sc = new SparkContext(conf)
{% endhighlight %}