Skip to content

Commit

Permalink
[hotfix][docs] Correct method name in KeyedStateReaderFunction example
Browse files Browse the repository at this point in the history
This closes #9520

[ci skip]
  • Loading branch information
alpinegizmo authored and StephanEwen committed Aug 26, 2019
1 parent 2391a88 commit ccb36ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/dev/libs/state_processor_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class ReaderFunction extends KeyedStateReaderFunction<Integer, KeyedState> {
}

@Override
public void processKey(
public void readKey(
Integer key,
Context ctx,
Collector<KeyedState> out) throws Exception {
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/libs/state_processor_api.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class ReaderFunction extends KeyedStateReaderFunction<Integer, KeyedState> {
}

@Override
public void processKey(
public void readKey(
Integer key,
Context ctx,
Collector<KeyedState> out) throws Exception {
Expand Down

0 comments on commit ccb36ee

Please sign in to comment.