[docs] Trivial typo in example code: o -> out.

This closes #280


Project: http://git-wip-us.apache.org/repos/asf/incubator-flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-flink/commit/f71b0c42
Tree: http://git-wip-us.apache.org/repos/asf/incubator-flink/tree/f71b0c42
Diff: http://git-wip-us.apache.org/repos/asf/incubator-flink/diff/f71b0c42

Branch: refs/heads/master
Commit: f71b0c42f0bb7850a5a7df4050fbc87358e59609
Parents: 8183c8c
Author: Erich Schubert <[email protected]>
Authored: Fri Jan 2 19:56:57 2015 +0100
Committer: mbalassi <[email protected]>
Committed: Sun Jan 4 21:02:02 2015 +0100

----------------------------------------------------------------------
 docs/java8_programming_guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-flink/blob/f71b0c42/docs/java8_programming_guide.md
----------------------------------------------------------------------
diff --git a/docs/java8_programming_guide.md b/docs/java8_programming_guide.md
index a47ff69..da715a8 100644
--- a/docs/java8_programming_guide.md
+++ b/docs/java8_programming_guide.md
@@ -68,7 +68,7 @@ DataSet<String> input = env.fromElements(1, 2, 3);
 // collector type must not be declared, it is inferred from the type of the 
dataset
 DataSet<String> manyALetters = input.flatMap((number, out) -> {        
     for(int i = 0; i < number; i++) {
-        o.collect("a");
+        out.collect("a");
     }
 });
 

Reply via email to