Repository: flink Updated Branches: refs/heads/master 5c968563d -> 82047f723
[FLINK-5948] Fix error in Python zip_with_index documentation This closes #3454. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/82047f72 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/82047f72 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/82047f72 Branch: refs/heads/master Commit: 82047f7230fc4c19eded993e0fc14ee99fa8044e Parents: 5c96856 Author: Geoffrey Mon <[email protected]> Authored: Wed Mar 1 22:50:51 2017 -0500 Committer: zentol <[email protected]> Committed: Thu Mar 2 15:14:08 2017 +0100 ---------------------------------------------------------------------- docs/dev/batch/zip_elements_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/82047f72/docs/dev/batch/zip_elements_guide.md ---------------------------------------------------------------------- diff --git a/docs/dev/batch/zip_elements_guide.md b/docs/dev/batch/zip_elements_guide.md index 7f8fe02..a5c65c5 100644 --- a/docs/dev/batch/zip_elements_guide.md +++ b/docs/dev/batch/zip_elements_guide.md @@ -72,7 +72,7 @@ env = get_environment() env.set_parallelism(2) input = env.from_elements("A", "B", "C", "D", "E", "F", "G", "H") -result = input.zipWithIndex() +result = input.zip_with_index() result.write_text(result_path) env.execute()
