You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by uc...@apache.org on 2017/03/27 10:13:27 UTC

flink git commit: [hotfix] [docs] Fix broken links

Repository: flink
Updated Branches:
  refs/heads/master 662ed33d8 -> 037b5cbde


[hotfix] [docs] Fix broken links

This closes #3618.


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

Branch: refs/heads/master
Commit: 037b5cbde18aff9031f1d182f0923e90e0f81f0a
Parents: 662ed33
Author: Patrick Lucas <me...@patricklucas.com>
Authored: Mon Mar 27 11:10:25 2017 +0200
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Mon Mar 27 12:13:16 2017 +0200

----------------------------------------------------------------------
 docs/dev/stream/side_output.md | 2 +-
 docs/dev/windows.md            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/037b5cbd/docs/dev/stream/side_output.md
----------------------------------------------------------------------
diff --git a/docs/dev/stream/side_output.md b/docs/dev/stream/side_output.md
index 296a4d4..3633b75 100644
--- a/docs/dev/stream/side_output.md
+++ b/docs/dev/stream/side_output.md
@@ -56,7 +56,7 @@ Notice how the `OutputTag` is typed according to the type of elements that the s
 contains.
 
 Emitting data to a side output it only possible when using a
-[ProcessFunction](/dev/stream/process_function.html). In the function, you can use the `Context` parameter
+[ProcessFunction]({{ site.baseurl }}/dev/stream/process_function.html). In the function, you can use the `Context` parameter
 to emit data to a side output identified by an `OutputTag`:
 
 <div class="codetabs" markdown="1">

http://git-wip-us.apache.org/repos/asf/flink/blob/037b5cbd/docs/dev/windows.md
----------------------------------------------------------------------
diff --git a/docs/dev/windows.md b/docs/dev/windows.md
index f8643cd..f0320a1 100644
--- a/docs/dev/windows.md
+++ b/docs/dev/windows.md
@@ -975,7 +975,7 @@ data is ever considered late because the end timestamp of the global window is `
 
 ### Getting late data as a side output
 
-Using Flink's [side output](/dev/stream/side_output.html) feature you can get a stream of the data
+Using Flink's [side output]({{ site.baseurl }}/dev/stream/side_output.html) feature you can get a stream of the data
 that was discarded as late.
 
 You first need to specify that you want to get late data using `sideOutputLateData(OutputTag)` on