Skip to content

Commit

Permalink
[SPARK-49511][SQL][FOLLOW-UP] Fix @see links to recover Scaladoc build
Browse files Browse the repository at this point in the history
### 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]>
  • Loading branch information
HyukjinKwon authored and IvanK-db committed Sep 19, 2024
1 parent 5bfda32 commit 01a8bc6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
* complexity.
*
* @see
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups]]
* `org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups`
* @since 3.4.0
*/
def flatMapSortedGroups[U: Encoder](sortExprs: Column*)(
Expand All @@ -172,7 +172,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
* complexity.
*
* @see
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups]]
* `org.apache.spark.sql.api.KeyValueGroupedDataset#flatMapGroups`
* @since 3.4.0
*/
def flatMapSortedGroups[U](
Expand Down Expand Up @@ -987,7 +987,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
* complexity.
*
* @see
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup]]
* `org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup`
* @since 3.4.0
*/
def cogroupSorted[U, R: Encoder](other: KVDS[K, U])(thisSortExprs: Column*)(
Expand All @@ -1005,7 +1005,7 @@ abstract class KeyValueGroupedDataset[K, V, DS[U] <: Dataset[U, DS]] extends Ser
* complexity.
*
* @see
* [[org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup]]
* `org.apache.spark.sql.api.KeyValueGroupedDataset#cogroup`
* @since 3.4.0
*/
def cogroupSorted[U, R](
Expand Down

0 comments on commit 01a8bc6

Please sign in to comment.