Skip to content
Snippets Groups Projects
Commit 19da8820 authored by Joseph E. Gonzalez's avatar Joseph E. Gonzalez
Browse files

Minor modifications to documentation.

parent 77626d15
No related branches found
No related tags found
No related merge requests found
......@@ -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] {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment