This is an automated email from the ASF dual-hosted git repository.
xiaokang 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 6c4a5353 chore(typos): fix spelling error (#875)
6c4a5353 is described below
commit 6c4a535372ab2d81d2217d44f728476d69b0e8d5
Author: Jason <[email protected]>
AuthorDate: Wed Feb 25 13:53:00 2026 +0800
chore(typos): fix spelling error (#875)
Signed-off-by: syaojun <[email protected]>
---
CHANGELOG.md | 4 ++--
cpp/src/graphar/high-level/graph_reader.cc | 2 +-
cpp/src/graphar/util.h | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bca929a6..33011bbe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,7 +8,7 @@ and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0
## [v0.11.4] - 2024-03-27
### Added
-- [Minor][Spark] Add SPARK_TESTING variable to increse tests performance by
@SemyonSinchenko in https://github.com/apache/graphar/pull/405
+- [Minor][Spark] Add SPARK_TESTING variable to increase tests performance by
@SemyonSinchenko in https://github.com/apache/graphar/pull/405
- Bump up GraphAr version to v0.11.4 by @acezen in
https://github.com/apache/graphar/pull/417
### Changed
@@ -76,7 +76,7 @@ and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0
## [v0.11.1] - 2024-01-24
### Changed
-- [Improvement][Spark] Improve the writer effeciency with parallel process by
@acezen in https://github.com/apache/graphar/pull/329
+- [Improvement][Spark] Improve the writer efficiency with parallel process by
@acezen in https://github.com/apache/graphar/pull/329
- [Feat][Spark] Memory tuning for GraphAr spark with persist and storage level
by @acezen in https://github.com/apache/graphar/pull/326
- Bump up GraphAr version to v0.11.1 by @acezen in
https://github.com/apache/graphar/pull/342
diff --git a/cpp/src/graphar/high-level/graph_reader.cc
b/cpp/src/graphar/high-level/graph_reader.cc
index 50050c4d..284311eb 100644
--- a/cpp/src/graphar/high-level/graph_reader.cc
+++ b/cpp/src/graphar/high-level/graph_reader.cc
@@ -275,7 +275,7 @@ Result<std::vector<IdType>> VerticesCollection::filter(
std::vector<int64_t> indices64;
if (is_filtered_) {
for (int chunk_idx : valid_chunk_) {
- // how to itetate valid_chunk_?
+ // how to iterate valid_chunk_?
filter_reader->seek(chunk_idx * CHUNK_SIZE);
auto filter_result =
filter_reader->GetChunk(graphar::GetChunkVersion::V1);
diff --git a/cpp/src/graphar/util.h b/cpp/src/graphar/util.h
index d8da5f3b..9bdd1d20 100644
--- a/cpp/src/graphar/util.h
+++ b/cpp/src/graphar/util.h
@@ -185,7 +185,7 @@ struct IndexConverter {
return global_edge_chunk_index + edge_chunk_index;
}
- // covert edge global chunk index to <vertex_chunk_index, edge_chunk_index>
+ // convert edge global chunk index to <vertex_chunk_index, edge_chunk_index>
std::pair<IdType, IdType> GlobalChunkIndexToIndexPair(IdType global_index) {
std::pair<IdType, IdType> index_pair(0, 0);
for (size_t i = 0; i < edge_chunk_nums_.size(); ++i) {
@@ -213,7 +213,7 @@ static inline IdType IndexPairToGlobalChunkIndex(
return global_edge_chunk_index + edge_chunk_index;
}
-// covert edge global chunk index to <vertex_chunk_index, edge_chunk_index>
+// convert edge global chunk index to <vertex_chunk_index, edge_chunk_index>
static inline std::pair<IdType, IdType> GlobalChunkIndexToIndexPair(
const std::vector<IdType>& edge_chunk_nums, IdType global_index) {
std::pair<IdType, IdType> index_pair(0, 0);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]