aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
authorBill Chambers <wchambers@ischool.berkeley.edu>2015-08-19 00:05:01 -0700
committerReynold Xin <rxin@databricks.com>2015-08-19 00:05:01 -0700
commitb23c4d3ffc36e47c057360c611d8ab1a13877699 (patch)
tree3d48f72c2886004cea5978c5fec8a9da8e6ad8b4 /docs/sql-programming-guide.md
parentbc9a0e03235865d2ec33372f6400dec8c770778a (diff)
downloadspark-b23c4d3ffc36e47c057360c611d8ab1a13877699.tar.gz
spark-b23c4d3ffc36e47c057360c611d8ab1a13877699.tar.bz2
spark-b23c4d3ffc36e47c057360c611d8ab1a13877699.zip
Fix Broken Link
Link was broken because it included tick marks. Author: Bill Chambers <wchambers@ischool.berkeley.edu> Closes #8302 from anabranch/patch-1.
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 6c317175d3..33e7893d7b 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -28,7 +28,7 @@ All of the examples on this page use sample data included in the Spark distribut
<div data-lang="scala" markdown="1">
The entry point into all functionality in Spark SQL is the
-[`SQLContext`](api/scala/index.html#org.apache.spark.sql.`SQLContext`) class, or one of its
+[`SQLContext`](api/scala/index.html#org.apache.spark.sql.SQLContext) class, or one of its
descendants. To create a basic `SQLContext`, all you need is a SparkContext.
{% highlight scala %}