Repository: flink Updated Branches: refs/heads/master d60197b5d -> 7610588bc
[Docs] Fix typo in programming guide This closes #327. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/7610588b Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/7610588b Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/7610588b Branch: refs/heads/master Commit: 7610588bc5430f8070f79f38e221d23c5e866119 Parents: d60197b Author: Carsten Brandt <[email protected]> Authored: Wed Jan 21 09:35:36 2015 +0100 Committer: Ufuk Celebi <[email protected]> Committed: Wed Jan 21 11:48:50 2015 +0100 ---------------------------------------------------------------------- docs/programming_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/7610588b/docs/programming_guide.md ---------------------------------------------------------------------- diff --git a/docs/programming_guide.md b/docs/programming_guide.md index e4d0eb3..97c3af5 100644 --- a/docs/programming_guide.md +++ b/docs/programming_guide.md @@ -2126,7 +2126,7 @@ To create a DeltaIteration call the `iterateDelta(DataSet, int, int)` (or `itera int, int[])` respectively). This method is called on the initial solution set. The arguments are the initial delta set, the maximum number of iterations and the key positions. The returned `DeltaIteration` object gives you access to the DataSets representing the workset and solution set -via the methods `iteration.getWorket()` and `iteration.getSolutionSet()`. +via the methods `iteration.getWorkset()` and `iteration.getSolutionSet()`. Below is an example for the syntax of a delta iteration
