Commit 1c63dd4f authored by hbsun2113's avatar hbsun2113 Committed by Minjie Wang
Browse files

[Doc] fix the comment error of edge_id in graph.h (#382)

parent 51293a32
...@@ -386,7 +386,7 @@ class Graph: public GraphInterface { ...@@ -386,7 +386,7 @@ class Graph: public GraphInterface {
struct EdgeList { struct EdgeList {
/*! \brief successor vertex list */ /*! \brief successor vertex list */
std::vector<dgl_id_t> succ; std::vector<dgl_id_t> succ;
/*! \brief predecessor vertex list */ /*! \brief out edge list */
std::vector<dgl_id_t> edge_id; std::vector<dgl_id_t> edge_id;
}; };
typedef std::vector<EdgeList> AdjacencyList; typedef std::vector<EdgeList> AdjacencyList;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment