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 2018/04/06 10:13:28 UTC

flink git commit: [FLINK-9068] [docs] Fix for removing extra '

' tag.

Repository: flink
Updated Branches:
  refs/heads/master dec591a17 -> 2d872447d


[FLINK-9068] [docs] Fix for removing extra '</p>' tag.


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

Branch: refs/heads/master
Commit: 2d872447df517ca63ff05f0ff264a71725eb68bd
Parents: dec591a
Author: shankarganesh1234 <sh...@ebay.com>
Authored: Thu Apr 5 19:42:13 2018 -0700
Committer: Fabian Hueske <fh...@apache.org>
Committed: Fri Apr 6 12:08:03 2018 +0200

----------------------------------------------------------------------
 docs/dev/stream/operators/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/2d872447/docs/dev/stream/operators/index.md
----------------------------------------------------------------------
diff --git a/docs/dev/stream/operators/index.md b/docs/dev/stream/operators/index.md
index aaf3646..1dbdef4 100644
--- a/docs/dev/stream/operators/index.md
+++ b/docs/dev/stream/operators/index.md
@@ -123,9 +123,9 @@ dataStream.keyBy(0) // Key by the first element of a Tuple
           <td>
             <p>A "rolling" reduce on a keyed data stream. Combines the current element with the last reduced value and
             emits the new value.
-                    <br/>
+              <br/>
             	<br/>
-            A reduce function that creates a stream of partial sums:</p>
+            <p>A reduce function that creates a stream of partial sums:</p>
             {% highlight java %}
 keyedStream.reduce(new ReduceFunction<Integer>() {
     @Override