davidradl commented on code in PR #26021:
URL: https://github.com/apache/flink/pull/26021#discussion_r1922532697


##########
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:
   I notice you have fixed this at 1.20. Usually fixes are done in master and 
backported. Master seems to have this issue as well. Please can you ensure 
master is fixed as well. 



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to