You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by mj...@apache.org on 2015/11/13 11:06:26 UTC

flink git commit: [Documanation] Fix constructor name of WordWithCount example.

Repository: flink
Updated Branches:
  refs/heads/master 824074aac -> 955ce5304


[Documanation] Fix constructor name of WordWithCount example.

This closes #1325


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

Branch: refs/heads/master
Commit: 955ce5304d549e255c5e439b5d65d685dd0c1df7
Parents: 824074a
Author: Jun Aoki <ja...@apache.org>
Authored: Tue Nov 3 17:34:39 2015 -0800
Committer: mjsax <mj...@apache.org>
Committed: Fri Nov 13 11:03:33 2015 +0100

----------------------------------------------------------------------
 docs/apis/programming_guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/955ce530/docs/apis/programming_guide.md
----------------------------------------------------------------------
diff --git a/docs/apis/programming_guide.md b/docs/apis/programming_guide.md
index 8c96980..5fbe27c 100644
--- a/docs/apis/programming_guide.md
+++ b/docs/apis/programming_guide.md
@@ -1574,9 +1574,9 @@ public class WordWithCount {
     public String word;
     public int count;
 
-    public WordCount() {}
+    public WordWithCount() {}
 
-    public WordCount(String word, int count) {
+    public WordWithCount(String word, int count) {
         this.word = word;
         this.count = count;
     }