[hotfix][javadocs] Update javadoc of InternalTimerService.registerEventTimeTimer()
This closes #5677. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/882fc652 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/882fc652 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/882fc652 Branch: refs/heads/release-1.5 Commit: 882fc65213bdd789e733d13086e3914676666a02 Parents: 583bf06 Author: Bowen Li <[email protected]> Authored: Fri Mar 9 23:35:15 2018 -0800 Committer: zentol <[email protected]> Committed: Wed Mar 14 20:47:28 2018 +0100 ---------------------------------------------------------------------- .../apache/flink/streaming/api/operators/InternalTimerService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/882fc652/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java ---------------------------------------------------------------------- diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java index f55cb03..cb171fb 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/InternalTimerService.java @@ -49,7 +49,7 @@ public interface InternalTimerService<N> { void deleteProcessingTimeTimer(N namespace, long time); /** - * Registers a timer to be fired when processing time passes the given time. The namespace + * Registers a timer to be fired when event time watermark passes the given time. The namespace * you pass here will be provided when the timer fires. */ void registerEventTimeTimer(N namespace, long time);
