From c518df944fd47ad0d0fda1fd6aaa7f8fac5b4b18 Mon Sep 17 00:00:00 2001 From: vasia Date: Fri, 10 Apr 2015 11:25:59 +0300 Subject: [PATCH] [gelly] minor javadoc correction: the Graph is always directed. --- .../src/main/java/org/apache/flink/graph/Graph.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 c84eb121c52..62173e3c6e7 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 the key type for edge and vertex identifiers - * @param the value type for vertexes + * @param the value type for vertices * @param the value type for edges */ @SuppressWarnings("serial") @@ -79,8 +79,7 @@ public class Graph & Serializable, VV extends Serializab private final DataSet> 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. -- GitLab