From 19da8820fcc33b8a4a5f11ee11526cc19c198a91 Mon Sep 17 00:00:00 2001 From: "Joseph E. Gonzalez" Date: Tue, 29 Oct 2013 11:06:06 -0700 Subject: [PATCH] Minor modifications to documentation. --- graph/src/main/scala/org/apache/spark/graph/Graph.scala | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/graph/src/main/scala/org/apache/spark/graph/Graph.scala b/graph/src/main/scala/org/apache/spark/graph/Graph.scala index 8c7ee1fcef..b3253934e6 100644 --- a/graph/src/main/scala/org/apache/spark/graph/Graph.scala +++ b/graph/src/main/scala/org/apache/spark/graph/Graph.scala @@ -12,10 +12,11 @@ import org.apache.spark.util.ClosureCleaner * manipulate the data associated with vertices and edges as well as the * underlying structure. Like Spark RDDs, the graph is a functional * data-structure in which mutating operations return new graphs. + * + * @note The majority of the graph operations are implemented in `GraphOps`. * - * @tparam VD The type of object associated with each vertex. - * - * @tparam ED The type of object associated with each edge + * @tparam VD the vertex attribute type + * @tparam ED the edge attribute type */ abstract class Graph[VD: ClassManifest, ED: ClassManifest] {