yeoleobun commented on code in PR #26021:
URL: https://github.com/apache/flink/pull/26021#discussion_r1922954088
##########
docs/content/docs/dev/datastream/operators/full_window_partition.md:
##########
@@ -98,7 +98,7 @@ An example is as follows:
```java
DataStream<Tuple2<Integer, Integer>> dataStream = //...
PartitionWindowedStream<Tuple2<Integer, Integer>> partitionWindowedDataStream
= dataStream.fullWindowPartition();
-DataStream<Integer> resultStream = partitionWindowedDataStream.aggregate(new
ReduceFunction<>{...});
+DataStream<Integer> resultStream = partitionWindowedDataStream.reduce(new
ReduceFunction<>{...});
Review Comment:
It seems cannot fix two branch in one pull request, I changed base branch to
master. Maybe I need create another pull request?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]