aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndy Konwinski <andykonwinski@gmail.com>2014-05-10 12:46:51 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-10 12:47:18 -0700
commit71ad53f8176fd9411edf04188a3fe0264777a781 (patch)
treed2a40d62bbfa6239c4c62328a41b9f5d71609c34 /docs
parent9fbb22c2011597dec9eddfbf5ea74cf821093293 (diff)
downloadspark-71ad53f8176fd9411edf04188a3fe0264777a781.tar.gz
spark-71ad53f8176fd9411edf04188a3fe0264777a781.tar.bz2
spark-71ad53f8176fd9411edf04188a3fe0264777a781.zip
fix broken in link in python docs
Author: Andy Konwinski <andykonwinski@gmail.com> Closes #650 from andyk/python-docs-link-fix and squashes the following commits: a1f9d51 [Andy Konwinski] fix broken in link in python docs (cherry picked from commit c05d11bb307eaba40c5669da2d374c28debaa55a) Signed-off-by: Patrick Wendell <pwendell@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/python-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/python-programming-guide.md b/docs/python-programming-guide.md
index 6813963bb0..39fb5f0c99 100644
--- a/docs/python-programming-guide.md
+++ b/docs/python-programming-guide.md
@@ -45,7 +45,7 @@ errors = logData.filter(is_error)
PySpark will automatically ship these functions to executors, along with any objects that they reference.
Instances of classes will be serialized and shipped to executors by PySpark, but classes themselves cannot be automatically distributed to executors.
-The [Standalone Use](#standalone-use) section describes how to ship code dependencies to executors.
+The [Standalone Use](#standalone-programs) section describes how to ship code dependencies to executors.
In addition, PySpark fully supports interactive use---simply run `./bin/pyspark` to launch an interactive shell.