Skip to content

Commit

Permalink
[hotfix][docs] Fix missing closing symbol in joining.md. This closes a…
Browse files Browse the repository at this point in the history
  • Loading branch information
afedulov committed Oct 20, 2022
1 parent a6db6ee commit c0737e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content.zh/docs/dev/datastream/operators/joining.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ orangeStream
.keyBy(<KeySelector>)
.intervalJoin(greenStream.keyBy(<KeySelector>))
.between(Time.milliseconds(-2), Time.milliseconds(1))
.process (new ProcessJoinFunction<Integer, Integer, String(){
.process (new ProcessJoinFunction<Integer, Integer, String>(){

@Override
public void processElement(Integer left, Integer right, Context ctx, Collector<String> out) {
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/dev/datastream/operators/joining.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ orangeStream
.keyBy(<KeySelector>)
.intervalJoin(greenStream.keyBy(<KeySelector>))
.between(Time.milliseconds(-2), Time.milliseconds(1))
.process (new ProcessJoinFunction<Integer, Integer, String(){
.process (new ProcessJoinFunction<Integer, Integer, String>(){

@Override
public void processElement(Integer left, Integer right, Context ctx, Collector<String> out) {
Expand Down

0 comments on commit c0737e1

Please sign in to comment.