Skip to content

Commit 36dcab7

Browse files
committed
chore(typos): fix spelling error in benchmark and cmake configurations
1 parent eab0fa5 commit 36dcab7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ else()
460460
endif()
461461

462462
# ------------------------------------------------------------------------------
463-
# build example
463+
# build examples
464464
# ------------------------------------------------------------------------------
465465
if (BUILD_EXAMPLES)
466466
find_package(Boost REQUIRED COMPONENTS graph)

cpp/benchmarks/arrow_chunk_reader_benchmark.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ BENCHMARK_DEFINE_F(
152152
}
153153
}
154154

155-
// select tow columns and internal ID column
155+
// select two columns and internal ID column
156156
BENCHMARK_DEFINE_F(
157157
BenchmarkFixture,
158158
VertexPropertyArrowChunkReaderReadChunk_firstGraph_TwoColumns_V1)
@@ -208,7 +208,7 @@ BENCHMARK_DEFINE_F(
208208
}
209209
}
210210

211-
// select tow columns and internal ID column
211+
// select two columns and internal ID column
212212
BENCHMARK_DEFINE_F(
213213
BenchmarkFixture,
214214
VertexPropertyArrowChunkReaderReadChunk_firstGraph_TwoColumns_V2)
@@ -265,7 +265,7 @@ BENCHMARK_DEFINE_F(
265265
}
266266
}
267267

268-
// select tow columns and internal ID column
268+
// select two columns and internal ID column
269269
BENCHMARK_DEFINE_F(
270270
BenchmarkFixture,
271271
VertexPropertyArrowChunkReaderReadChunk_secondGraph_TwoColumns_V1)
@@ -323,7 +323,7 @@ BENCHMARK_DEFINE_F(
323323
}
324324
}
325325

326-
// select tow columns and internal ID column
326+
// select two columns and internal ID column
327327
BENCHMARK_DEFINE_F(
328328
BenchmarkFixture,
329329
VertexPropertyArrowChunkReaderReadChunk_secondGraph_TwoColumns_V2)

python/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ find_package(ArrowAcero REQUIRED)
5959
find_package(Parquet REQUIRED)
6060

6161
if(APPLE)
62-
# cibuildwheel uses delocate to bundle external dylibs into the wheel.
63-
# delocate needs to be able to resolve @rpath dependencies (e.g.
62+
# cibuildwheel uses deallocate to bundle external dylibs into the wheel.
63+
# deallocate needs to be able to resolve @rpath dependencies (e.g.
6464
# @rpath/libarrow.1300.dylib). We add the imported Arrow/Parquet library
65-
# directories to LC_RPATH so delocate can find and copy them.
65+
# directories to LC_RPATH so deallocate can find and copy them.
6666
set(_graphar_macos_rpaths "")
6767

6868
foreach(_tgt IN ITEMS Arrow::arrow_shared ArrowDataset::arrow_dataset_shared ArrowAcero::arrow_acero_shared Parquet::parquet_shared)
@@ -111,7 +111,7 @@ target_compile_definitions(_core PRIVATE VERSION_INFO=${PROJECT_VERSION})
111111
# packaged libgraphar at runtime inside the wheel.
112112
if(APPLE)
113113
# Keep @loader_path for runtime inside the wheel, and add Arrow/Parquet
114-
# library dirs so delocate can resolve @rpath dependencies during repair.
114+
# library dirs so deallocate can resolve @rpath dependencies during repair.
115115
set(_core_rpath "@loader_path")
116116
if(_graphar_macos_rpaths)
117117
list(JOIN _graphar_macos_rpaths ";" _graphar_macos_rpaths_joined)

0 commit comments

Comments
 (0)