Skip to content

Commit ac1c3c0

Browse files
committed
fixed.
1 parent 6372720 commit ac1c3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3456,7 +3456,7 @@ object functions {
34563456
/**
34573457
* Returns an array of elements for which a predicate holds in a given array.
34583458
* {{{
3459-
* df.select(filter(col("s"), x -> x % 2 === 0))
3459+
* df.select(filter(col("s"), x => x % 2 === 0))
34603460
* df.selectExpr("filter(col, x -> x % 2 == 0)")
34613461
* }}}
34623462
*

0 commit comments

Comments
 (0)