You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by al...@apache.org on 2015/10/09 14:54:55 UTC

flink git commit: [hotfix] Fix wrong reference to WindowedDataStream in Doc

Repository: flink
Updated Branches:
  refs/heads/master 998be1bbb -> 04558574c


[hotfix] Fix wrong reference to WindowedDataStream in Doc


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

Branch: refs/heads/master
Commit: 04558574cf27e567f1ba0afdcaa888aa001f7ffa
Parents: 998be1b
Author: Aljoscha Krettek <al...@gmail.com>
Authored: Fri Oct 9 14:53:44 2015 +0200
Committer: Aljoscha Krettek <al...@gmail.com>
Committed: Fri Oct 9 14:54:31 2015 +0200

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


http://git-wip-us.apache.org/repos/asf/flink/blob/04558574/docs/apis/streaming_guide.md
----------------------------------------------------------------------
diff --git a/docs/apis/streaming_guide.md b/docs/apis/streaming_guide.md
index edba15f..9257ae1 100644
--- a/docs/apis/streaming_guide.md
+++ b/docs/apis/streaming_guide.md
@@ -572,7 +572,7 @@ dataStream.keyBy(0).window(TumblingTimeWindows.of(5, TimeUnit.SECONDS)); // Last
           </td>
         </tr>
         <tr>
-          <td><strong>WindowAll</strong><br>DataStream &rarr; AllWindowedDataStream</td>
+          <td><strong>WindowAll</strong><br>DataStream &rarr; AllWindowedStream</td>
           <td>
               <p>Windows can be defined on regular DataStreams. Windows group all the stream events
               according to some characteristic (e.g., the data that arrived within the last 5 seconds).
@@ -931,7 +931,7 @@ dataStream.keyBy(0).window(TumblingTimeWindows.of(5, TimeUnit.SECONDS)) // Last
           </td>
         </tr>
         <tr>
-          <td><strong>WindowAll</strong><br>DataStream &rarr; AllWindowedDataStream</td>
+          <td><strong>WindowAll</strong><br>DataStream &rarr; AllWindowedStream</td>
           <td>
               <p>Windows can be defined on regular DataStreams. Windows group all the stream events
               according to some characteristic (e.g., the data that arrived within the last 5 seconds).