aboutsummaryrefslogtreecommitdiff
path: root/docs/scala-programming-guide.md
diff options
context:
space:
mode:
authorPrashant Sharma <prashant.s@imaginea.com>2014-01-02 18:41:21 +0530
committerPrashant Sharma <prashant.s@imaginea.com>2014-01-02 18:41:21 +0530
commit94b7a7fe37a4b1459bfdbece2a4162451d6a8ac2 (patch)
treebebd8917d475fdc08e1e3e583be435562e9c4415 /docs/scala-programming-guide.md
parentb810a85cdddb247e1a104f4daad905b97222ad85 (diff)
downloadspark-94b7a7fe37a4b1459bfdbece2a4162451d6a8ac2.tar.gz
spark-94b7a7fe37a4b1459bfdbece2a4162451d6a8ac2.tar.bz2
spark-94b7a7fe37a4b1459bfdbece2a4162451d6a8ac2.zip
run-example -> bin/run-example
Diffstat (limited to 'docs/scala-programming-guide.md')
-rw-r--r--docs/scala-programming-guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/scala-programming-guide.md b/docs/scala-programming-guide.md
index 16ae15046a..c1ef46a1cd 100644
--- a/docs/scala-programming-guide.md
+++ b/docs/scala-programming-guide.md
@@ -366,9 +366,9 @@ res2: Int = 10
# Where to Go from Here
You can see some [example Spark programs](http://spark.incubator.apache.org/examples.html) on the Spark website.
-In addition, Spark includes several samples in `examples/src/main/scala`. Some of them have both Spark versions and local (non-parallel) versions, allowing you to see what had to be changed to make the program run on a cluster. You can run them using by passing the class name to the `run-example` script included in Spark; for example:
+In addition, Spark includes several samples in `examples/src/main/scala`. Some of them have both Spark versions and local (non-parallel) versions, allowing you to see what had to be changed to make the program run on a cluster. You can run them using by passing the class name to the `bin/run-example` script included in Spark; for example:
- ./run-example org.apache.spark.examples.SparkPi
+ ./bin/run-example org.apache.spark.examples.SparkPi
Each example program prints usage help when run without any arguments.