You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by fh...@apache.org on 2015/10/17 07:39:20 UTC

flink git commit: [hotfix] Fix DataSet API programming guide

Repository: flink
Updated Branches:
  refs/heads/master c78adedc3 -> 728df3900


[hotfix] Fix DataSet API programming guide


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

Branch: refs/heads/master
Commit: 728df39007dd425959eee6dc358138a1875d3bd3
Parents: c78aded
Author: Fabian Hueske <fh...@apache.org>
Authored: Sat Oct 17 07:38:13 2015 +0200
Committer: Fabian Hueske <fh...@apache.org>
Committed: Sat Oct 17 07:38:13 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/flink/blob/728df390/docs/apis/programming_guide.md
----------------------------------------------------------------------
diff --git a/docs/apis/programming_guide.md b/docs/apis/programming_guide.md
index 7f5e41d..895d19f 100644
--- a/docs/apis/programming_guide.md
+++ b/docs/apis/programming_guide.md
@@ -969,7 +969,7 @@ val joined = left.leftOuterJoin(right).where(0).equalTo(1) {
       <td>
         <p>The two-dimensional variant of the reduce operation. Groups each input on one or more
         fields and then joins the groups. The transformation function is called per pair of groups.
-        See the <a href="#specifying-keys">keys section</a> to learn how to define coGroup keys.
+        See the <a href="#specifying-keys">keys section</a> to learn how to define coGroup keys.</p>
 {% highlight scala %}
 data1.coGroup(data2).where(0).equalTo(1)
 {% endhighlight %}