Minor modifications to documentation.

This commit is contained in:
Joseph E. Gonzalez 2013-10-29 11:06:06 -07:00
parent 77626d1507
commit 19da8820fc

View file

@ -13,9 +13,10 @@ import org.apache.spark.util.ClosureCleaner
* underlying structure. Like Spark RDDs, the graph is a functional
* data-structure in which mutating operations return new graphs.
*
* @tparam VD The type of object associated with each vertex.
* @note The majority of the graph operations are implemented in `GraphOps`.
*
* @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] {