aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2015-10-25 10:31:44 +0100
committerReynold Xin <rxin@databricks.com>2015-10-25 10:31:44 +0100
commitb67dc6a4342577e73b0600b51052c286c4569960 (patch)
treebd22a3707588ce8a4f98333e38faefed3d49b43b /docs
parent146da0d8100490a6e49a6c076ec253cdaf9f8905 (diff)
downloadspark-b67dc6a4342577e73b0600b51052c286c4569960.tar.gz
spark-b67dc6a4342577e73b0600b51052c286c4569960.tar.bz2
spark-b67dc6a4342577e73b0600b51052c286c4569960.zip
[SPARK-11299][DOC] Fix link to Scala DataFrame Functions reference
The SQL programming guide's link to the DataFrame functions reference points to the wrong location; this patch fixes that. Author: Josh Rosen <joshrosen@databricks.com> Closes #9269 from JoshRosen/SPARK-11299.
Diffstat (limited to 'docs')
-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 30206c6f6f..f07c957369 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -215,7 +215,7 @@ df.groupBy("age").count().show()
For a complete list of the types of operations that can be performed on a DataFrame refer to the [API Documentation](api/scala/index.html#org.apache.spark.sql.DataFrame).
-In addition to simple column references and expressions, DataFrames also have a rich library of functions including string manipulation, date arithmetic, common math operations and more. The complete list is available in the [DataFrame Function Reference](api/scala/index.html#org.apache.spark.sql.DataFrame).
+In addition to simple column references and expressions, DataFrames also have a rich library of functions including string manipulation, date arithmetic, common math operations and more. The complete list is available in the [DataFrame Function Reference](api/scala/index.html#org.apache.spark.sql.functions$).
</div>