Skip to content

Commit f4d01b4

Browse files
authored
[Minor][C++] Fix grammar mistakes. (#208)
1 parent 8b0ac10 commit f4d01b4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cpp/include/gar/graph_info.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,7 @@ class EdgeInfo {
802802
*
803803
* @param vertex_chunk_index the vertex chunk index
804804
* @param edge_chunk_index index of edge adj list chunk of the vertex chunk
805+
* @param adj_list_type The adjacency list type.
805806
*/
806807
inline Result<std::string> GetAdjListFilePath(IdType vertex_chunk_index,
807808
IdType edge_chunk_index,
@@ -839,6 +840,7 @@ class EdgeInfo {
839840
* the offset chunks is aligned with the vertex chunks
840841
*
841842
* @param vertex_chunk_index index of vertex chunk
843+
* @param adj_list_type The adjacency list type.
842844
*/
843845
inline Result<std::string> GetAdjListOffsetFilePath(
844846
IdType vertex_chunk_index, AdjListType adj_list_type) const noexcept {
@@ -1033,7 +1035,7 @@ class EdgeInfo {
10331035
return true;
10341036
}
10351037

1036-
/** Loads the yaml as a EdgeInfo instance. */
1038+
/** Loads the yaml as an EdgeInfo instance. */
10371039
static Result<EdgeInfo> Load(std::shared_ptr<Yaml> yaml);
10381040

10391041
private:
@@ -1131,7 +1133,7 @@ class GraphInfo {
11311133
}
11321134

11331135
/**
1134-
*@brief Add a edge info path to graph info instance.
1136+
*@brief Add an edge info path to graph info instance.
11351137
*
11361138
*@param path The edge info path to add
11371139
*/

0 commit comments

Comments
 (0)