Skip to content

Commit

Permalink
[format] Unify name from target to destination (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thespica authored Aug 12, 2024
1 parent b8f122f commit 0003242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/overview/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Glossary of relevant concepts and terms.
edges of each vertex are stored in a separate array.

- **Coordinate List (COO)**: The storage layout the edges of certain vertex type. Corresponding to the unordered
by source vertex id or unordered by target vertex id adjacency list, the edges are stored in a single array and
by source vertex id or unordered by destination vertex id adjacency list, the edges are stored in a single array and
no offsets are stored.

- **Vertex Chunk**: The storage unit of vertex. Each vertex chunk contains a fixed number of vertices and is stored
Expand Down
4 changes: 2 additions & 2 deletions format/enums.proto
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ enum FileType {

enum AdjListType {
UNORDERED_BY_SOURCE = 0;
UNORDERED_BY_TARGET = 1;
UNORDERED_BY_DESTINATION = 1;
ORDERED_BY_SOURCE = 2;
ORDERED_BY_TARGET = 3;
ORDERED_BY_DESTINATION = 3;
};

0 comments on commit 0003242

Please sign in to comment.