-
Notifications
You must be signed in to change notification settings - Fork 13.8k
[hotfix] Fix watermark javadoc #26884
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
@bivouak Please could you follow https://flink.apache.org/how-to-contribute/contribute-code/ and start the tile of the PR with either [Jira number] or [hotfix]. In this case it looks like a hotfix. Note it not a docs change it is a comments change. |
* once the an event with timestamp T was encountered, no events older than {@code T - B} will | ||
* follow any more. | ||
* once an event with timestamp T was encountered, no events older than {@code T - B} will | ||
* follow anymore. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This text seems to be almost an incorrect copy of the class javadoc .
I think a link to the class javadoc, with the existing @see
or similar and then javadoc including the @param
would seem more appropriate. Maybe something like
Creates a watermark strategy for @see BoundedOutOfOrdernessWatermarks using the supplied out-of-order bound
@param maxOutOfOrderness out-of-order bound duration.
What is the purpose of the change
Simple typo fix in the docstring/javadoc.