aboutsummaryrefslogtreecommitdiff
path: root/docs/python-programming-guide.md
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:46:51 -0700
commitc05d11bb307eaba40c5669da2d374c28debaa55a (patch)
tree1fd43fec87e7b9acbcfae19b307fe80aa0c89714 /docs/python-programming-guide.md
parent7eefc9d2b3f6ebc0ecb5562da7323f1e06afbb35 (diff)
downloadspark-c05d11bb307eaba40c5669da2d374c28debaa55a.tar.gz
spark-c05d11bb307eaba40c5669da2d374c28debaa55a.tar.bz2
spark-c05d11bb307eaba40c5669da2d374c28debaa55a.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
Diffstat (limited to 'docs/python-programming-guide.md')
-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.