From 00032420faf100299a857eacc882089a95a78202 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 12 Aug 2024 18:13:11 +0800 Subject: [PATCH] [format] Unify name from target to destination (#588) --- docs/overview/concepts.md | 2 +- format/enums.proto | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/overview/concepts.md b/docs/overview/concepts.md index 7a080cb6f..da5b1a0b8 100644 --- a/docs/overview/concepts.md +++ b/docs/overview/concepts.md @@ -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 diff --git a/format/enums.proto b/format/enums.proto index 35ea9f087..6281ad5cb 100644 --- a/format/enums.proto +++ b/format/enums.proto @@ -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; };