You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2018/05/10 11:48:48 UTC

[14/17] flink git commit: [hotfix][docs] Add missing bracket

[hotfix][docs] Add missing bracket

This closes #5981.


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

Branch: refs/heads/master
Commit: 84e7fe4ca480978625d7b4cd9498f23ef38b36a5
Parents: f126ac2
Author: Ken Geis <kg...@berkeley.edu>
Authored: Wed May 9 12:23:08 2018 -0700
Committer: zentol <ch...@apache.org>
Committed: Thu May 10 08:26:53 2018 +0200

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


http://git-wip-us.apache.org/repos/asf/flink/blob/84e7fe4c/docs/dev/batch/dataset_transformations.md
----------------------------------------------------------------------
diff --git a/docs/dev/batch/dataset_transformations.md b/docs/dev/batch/dataset_transformations.md
index 673de60..96c04c9 100644
--- a/docs/dev/batch/dataset_transformations.md
+++ b/docs/dev/batch/dataset_transformations.md
@@ -1486,7 +1486,7 @@ A Join transformation can construct result tuples using a projection as shown he
 {% highlight java %}
 DataSet<Tuple3<Integer, Byte, String>> input1 = // [...]
 DataSet<Tuple2<Integer, Double>> input2 = // [...]
-DataSet<Tuple4<Integer, String, Double, Byte>
+DataSet<Tuple4<Integer, String, Double, Byte>>
             result =
             input1.join(input2)
                   // key definition on first DataSet using a field position key