You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by gr...@apache.org on 2017/01/19 20:22:35 UTC

flink git commit: [FLINK-5557] [docs] Fix link in library methods

Repository: flink
Updated Branches:
  refs/heads/master b86a3d761 -> 4833e74e7


[FLINK-5557] [docs] Fix link in library methods

This closes #3163


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

Branch: refs/heads/master
Commit: 4833e74e7a8b514e8dfa243f3f196ce443cf1c50
Parents: b86a3d7
Author: Greg Hogan <co...@greghogan.com>
Authored: Wed Oct 26 15:18:50 2016 -0400
Committer: Greg Hogan <co...@greghogan.com>
Committed: Thu Jan 19 15:19:39 2017 -0500

----------------------------------------------------------------------
 docs/dev/libs/gelly/library_methods.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/4833e74e/docs/dev/libs/gelly/library_methods.md
----------------------------------------------------------------------
diff --git a/docs/dev/libs/gelly/library_methods.md b/docs/dev/libs/gelly/library_methods.md
index 56ed64e..e2288b4 100644
--- a/docs/dev/libs/gelly/library_methods.md
+++ b/docs/dev/libs/gelly/library_methods.md
@@ -65,7 +65,7 @@ verticesWithCommunity.print
 
 #### Overview
 In graph theory, communities refer to groups of nodes that are well connected internally, but sparsely connected to other groups.
-This library method is an implementation of the community detection algorithm described in the paper [Towards real-time community detection in large networks](http://arxiv.org/pdf/0808.2633.pdf%22%3Earticle%20explaining%20the%20algorithm%20in%20detail).
+This library method is an implementation of the community detection algorithm described in the paper [Towards real-time community detection in large networks](http://arxiv.org/pdf/0808.2633.pdf).
 
 #### Details
 The algorithm is implemented using [scatter-gather iterations](#scatter-gather-iterations).