davidradl commented on code in PR #26021: URL: https://github.com/apache/flink/pull/26021#discussion_r1928968943
########## 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: yes you need a pull request per branch. nit: please could you update the tit;le to be more descriptive -- 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