This is an automated email from the ASF dual-hosted git repository.

spica pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-graphar.git


The following commit(s) were added to refs/heads/main by this push:
     new 00032420 [format] Unify name from target to destination (#588)
00032420 is described below

commit 00032420faf100299a857eacc882089a95a78202
Author: John <[email protected]>
AuthorDate: Mon Aug 12 18:13:11 2024 +0800

    [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 7a080cb6..da5b1a0b 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 35ea9f08..6281ad5c 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;
 };


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to