Repository: spark
Updated Branches:
  refs/heads/master 3210121fe -> 6690924c4


[MINOR] Avoid the 'latest' link that might vary per release in 
functions.scala's comment

## What changes were proposed in this pull request?

This PR propose to address 
https://github.com/apache/spark/pull/21318#discussion_r187843125 comment.

This is rather a nit but looks we better avoid to update the link for each 
release since it always points the latest (it doesn't look like worth enough 
updating release guide on the other hand as well).

## How was this patch tested?

N/A

Author: hyukjinkwon <gurwls...@apache.org>

Closes #21907 from HyukjinKwon/minor-fix.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/6690924c
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/6690924c
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/6690924c

Branch: refs/heads/master
Commit: 6690924c49a443cd629fcc1a4460cf443fb0a918
Parents: 3210121
Author: hyukjinkwon <gurwls...@apache.org>
Authored: Mon Jul 30 10:02:29 2018 +0800
Committer: hyukjinkwon <gurwls...@apache.org>
Committed: Mon Jul 30 10:02:29 2018 +0800

----------------------------------------------------------------------
 sql/core/src/main/scala/org/apache/spark/sql/functions.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/6690924c/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/functions.scala 
b/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
index 2772958..a2d3792 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/functions.scala
@@ -44,8 +44,8 @@ import org.apache.spark.util.Utils
  *
  * Spark also includes more built-in functions that are less common and are 
not defined here.
  * You can still access them (and all the functions defined here) using the 
`functions.expr()` API
- * and calling them through a SQL expression string. You can find the entire 
list of functions for
- * the latest version of Spark at 
https://spark.apache.org/docs/latest/api/sql/index.html.
+ * and calling them through a SQL expression string. You can find the entire 
list of functions
+ * at SQL API documentation.
  *
  * As an example, `isnan` is a function that is defined here. You can use 
`isnan(col("myCol"))`
  * to invoke the `isnan` function. This way the programming language's 
compiler ensures `isnan`


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to