Skip to content

Commit 6690924

Browse files
committed
[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 apache#21318 (comment) 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 <[email protected]> Closes apache#21907 from HyukjinKwon/minor-fix.
1 parent 3210121 commit 6690924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/core/src/main/scala/org/apache/spark/sql/functions.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ import org.apache.spark.util.Utils
4444
*
4545
* Spark also includes more built-in functions that are less common and are not defined here.
4646
* You can still access them (and all the functions defined here) using the `functions.expr()` API
47-
* and calling them through a SQL expression string. You can find the entire list of functions for
48-
* the latest version of Spark at https://spark.apache.org/docs/latest/api/sql/index.html.
47+
* and calling them through a SQL expression string. You can find the entire list of functions
48+
* at SQL API documentation.
4949
*
5050
* As an example, `isnan` is a function that is defined here. You can use `isnan(col("myCol"))`
5151
* to invoke the `isnan` function. This way the programming language's compiler ensures `isnan`

0 commit comments

Comments
 (0)