This is an automated email from the ASF dual-hosted git repository.
jark pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 74654d255b6 [hotfix][table] Fix typo in comment of WindowBuffer
74654d255b6 is described below
commit 74654d255b63f9ffad570f2e1377c9abde491146
Author: Kyle Dong <[email protected]>
AuthorDate: Mon Jun 6 18:12:44 2022 +0800
[hotfix][table] Fix typo in comment of WindowBuffer
This closes #19879
---
.../runtime/operators/aggregate/window/buffers/WindowBuffer.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/aggregate/window/buffers/WindowBuffer.java
b/flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/aggregate/window/buffers/WindowBuffer.java
index 4f86659d712..ad020c4fec0 100644
---
a/flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/aggregate/window/buffers/WindowBuffer.java
+++
b/flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/operators/aggregate/window/buffers/WindowBuffer.java
@@ -93,7 +93,7 @@ public interface WindowBuffer {
* @param windowState the window state to flush buffered data into.
* @param isEventTime indicates whether the operator works in
event-time or processing-time
* mode, used for register corresponding timers.
- * @param shiftTimeZone the shit timezone of the window
+ * @param shiftTimeZone the shift timezone of the window
* @throws IOException thrown if the buffer can't be opened
*/
WindowBuffer create(
@@ -121,7 +121,7 @@ public interface WindowBuffer {
* @param memoryManager the manager that governs memory by Flink
framework
* @param memorySize the managed memory size can be used by this
operator
* @param collector collector to emit records
- * @param shiftTimeZone the shit timezone of the window
+ * @param shiftTimeZone the shift timezone of the window
* @throws IOException thrown if the buffer can't be opened
*/
WindowBuffer create(