Skip to content

Commit 01a8bc6

Browse files
HyukjinKwonIvanK-db
authored andcommitted
[SPARK-49511][SQL][FOLLOW-UP] Fix @see links to recover Scaladoc build
### What changes were proposed in this pull request? This PR is a followup of apache#47989 that fixes Scaladoc failure ### Why are the changes needed? To recover the build. ### Does this PR introduce _any_ user-facing change? No, dev-only. ### How was this patch tested? Manually via: ```bash build/sbt -Pkinesis-asl unidoc ``` ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#48014 from HyukjinKwon/SPARK-49511-followup. Authored-by: Hyukjin Kwon <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
1 parent 5bfda32 commit 01a8bc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sql/api/src/main/scala/org/apache/spark/sql/api/KeyValueGroupedDataset.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
145145
* complexity.
146146
*
147147
* @see
148-
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups]]
148+
* `org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups`
149149
* @since 3.4.0
150150
*/
151151
def flatMapSortedGroups[U: Encoder](sortExprs: Column*)(
@@ -172,7 +172,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
172172
* complexity.
173173
*
174174
* @see
175-
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups]]
175+
* `org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups`
176176
* @since 3.4.0
177177
*/
178178
def flatMapSortedGroups[U](
@@ -987,7 +987,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
987987
* complexity.
988988
*
989989
* @see
990-
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup]]
990+
* `org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup`
991991
* @since 3.4.0
992992
*/
993993
def cogroupSorted[U, R: Encoder](other: KVDS[K, U])(thisSortExprs: Column*)(
@@ -1005,7 +1005,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
10051005
* complexity.
10061006
*
10071007
* @see
1008-
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup]]
1008+
* `org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup`
10091009
* @since 3.4.0
10101010
*/
10111011
def cogroupSorted[U, R](

0 commit comments

Comments
 (0)