Repository: flink Updated Branches: refs/heads/master 2438824a8 -> cd5b4a630
[FLINK-6809] [docs] Correct variable name in java side-output example This closes #4047 Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/cd5b4a63 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/cd5b4a63 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/cd5b4a63 Branch: refs/heads/master Commit: cd5b4a6306e628033b0c601e0c0e9bd2d6c05b5b Parents: 2438824 Author: Novotnik, Petr <[email protected]> Authored: Fri Jun 2 09:59:29 2017 +0200 Committer: Aljoscha Krettek <[email protected]> Committed: Fri Jun 2 13:58:25 2017 +0200 ---------------------------------------------------------------------- docs/dev/stream/side_output.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/cd5b4a63/docs/dev/stream/side_output.md ---------------------------------------------------------------------- diff --git a/docs/dev/stream/side_output.md b/docs/dev/stream/side_output.md index 63b7172..305deb0 100644 --- a/docs/dev/stream/side_output.md +++ b/docs/dev/stream/side_output.md @@ -72,7 +72,7 @@ SingleOutputStreamOperator<Integer> mainDataStream = input @Override public void processElement( - Integer input, + Integer value, Context ctx, Collector<Integer> out) throws Exception { // emit data to regular output
