aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
authorKamil Smuga <smugakamil@gmail.com>2015-03-22 15:56:25 +0000
committerSean Owen <sowen@cloudera.com>2015-03-22 15:56:25 +0000
commit6ef48632fbf3e6659ceacaab1dbb8be8238d4d33 (patch)
tree8b69af04ec11ee7e07d92937d1ea3c2b4e28d186 /docs/sql-programming-guide.md
parentadb2ff752fa8bda54c969b60a3168d87cd70237d (diff)
downloadspark-6ef48632fbf3e6659ceacaab1dbb8be8238d4d33.tar.gz
spark-6ef48632fbf3e6659ceacaab1dbb8be8238d4d33.tar.bz2
spark-6ef48632fbf3e6659ceacaab1dbb8be8238d4d33.zip
SPARK-6454 [DOCS] Fix links to pyspark api
Author: Kamil Smuga <smugakamil@gmail.com> Author: stderr <smugakamil@gmail.com> Closes #5120 from kamilsmuga/master and squashes the following commits: fee3281 [Kamil Smuga] more python api links fixed for docs 13240cb [Kamil Smuga] resolved merge conflicts with upstream/master 6649b3b [Kamil Smuga] fix broken docs links to Python API 92f03d7 [stderr] Fix links to pyspark api
Diffstat (limited to 'docs/sql-programming-guide.md')
-rw-r--r--docs/sql-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index 2cbb4c967e..a7d35741a4 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -56,7 +56,7 @@ SQLContext sqlContext = new org.apache.spark.sql.SQLContext(sc);
<div data-lang="python" markdown="1">
The entry point into all relational functionality in Spark is the
-[`SQLContext`](api/python/pyspark.sql.SQLContext-class.html) class, or one
+[`SQLContext`](api/python/pyspark.sql.html#pyspark.sql.SQLContext) class, or one
of its decedents. To create a basic `SQLContext`, all you need is a SparkContext.
{% highlight python %}