You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by va...@apache.org on 2015/04/10 10:29:28 UTC

[4/4] flink git commit: [gelly] minor javadoc correction: the Graph is always directed.

[gelly] minor javadoc correction: the Graph is always directed.


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

Branch: refs/heads/master
Commit: c518df944fd47ad0d0fda1fd6aaa7f8fac5b4b18
Parents: e281e4d
Author: vasia <va...@apache.org>
Authored: Fri Apr 10 11:25:59 2015 +0300
Committer: vasia <va...@apache.org>
Committed: Fri Apr 10 11:26:38 2015 +0300

----------------------------------------------------------------------
 .../flink-gelly/src/main/java/org/apache/flink/graph/Graph.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/c518df94/flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/Graph.java
----------------------------------------------------------------------
diff --git a/flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/Graph.java b/flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/Graph.java
index c84eb12..62173e3 100644
--- a/flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/Graph.java
+++ b/flink-staging/flink-gelly/src/main/java/org/apache/flink/graph/Graph.java
@@ -68,7 +68,7 @@ import org.apache.flink.types.NullValue;
  * @see org.apache.flink.graph.Vertex
  * 
  * @param <K> the key type for edge and vertex identifiers
- * @param <VV> the value type for vertexes
+ * @param <VV> the value type for vertices
  * @param <EV> the value type for edges
  */
 @SuppressWarnings("serial")
@@ -79,8 +79,7 @@ public class Graph<K extends Comparable<K> & Serializable, VV extends Serializab
 	private final DataSet<Edge<K, EV>> edges;
 
 	/**
-	 * Creates a graph from two DataSets: vertices and edges and allow setting
-	 * the undirected property
+	 * Creates a graph from two DataSets: vertices and edges
 	 * 
 	 * @param vertices a DataSet of vertices.
 	 * @param edges a DataSet of edges.