Repository: flink Updated Branches: refs/heads/master 3b6267555 -> 4e050b8cb
[hotfix] Fix type in ProcessFunction documentation Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/4e050b8c Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/4e050b8c Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/4e050b8c Branch: refs/heads/master Commit: 4e050b8cbc1f626889073739cf50b995f0fded84 Parents: 3b62675 Author: Aljoscha Krettek <[email protected]> Authored: Sun Jan 22 08:55:47 2017 +0100 Committer: Aljoscha Krettek <[email protected]> Committed: Sun Jan 22 08:55:47 2017 +0100 ---------------------------------------------------------------------- docs/dev/stream/process_function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/4e050b8c/docs/dev/stream/process_function.md ---------------------------------------------------------------------- diff --git a/docs/dev/stream/process_function.md b/docs/dev/stream/process_function.md index a8da4a2..99a3bf6 100644 --- a/docs/dev/stream/process_function.md +++ b/docs/dev/stream/process_function.md @@ -36,7 +36,7 @@ all (acyclic) streaming applications: - timers (event time and processing time) The `ProcessFunction` can be thought of as a `FlatMapFunction` with access to keyed state and timers. It handles events -be being invoked for each event received in the input stream(s). +by being invoked for each event received in the input stream(s). For fault tolerant state, the `ProcessFunction` gives access to Flink's [keyed state](state.html), accessible via the `RuntimeContext`, similar to the way other stateful functions can access keyed state. Like all functions with keyed state,
