Skip to content

Commit 6140f7c

Browse files
authored
MINOR: [C++] Fix typo in arrow/cpp/* (#48666)
### Rationale for this change This PR fixes several typos in `arrow/cpp/*` ### What changes are included in this PR? This PR proposes to fix a typo in `arrow/cpp/*` ### Are these changes tested? Manually tested via my browser. ### Are there any user-facing changes? No, dev-only. Authored-by: Hyukjin Kwon <gurwls223@apache.org> Signed-off-by: David Li <li.davidm96@gmail.com>
1 parent 7de2f61 commit 6140f7c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cpp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ as well as for the C++ libraries for Apache Parquet.
2424

2525
## Installation
2626

27-
See https://arrow.apache.org/install/ for the latest instructions how
27+
See https://arrow.apache.org/install/ for the latest instructions on how
2828
to install pre-compiled binary versions of the library.
2929

3030
## Source Builds and Development

cpp/examples/parquet/parquet_arrow/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ Using parquet-cpp with the arrow interface
1717

1818
This folder contains an example project that shows how to setup a CMake project
1919
that consumes `parquet-cpp` as a library as well as how you can use the
20-
`parquet/arrow` interface to reading and write Apache Parquet files.
20+
`parquet/arrow` interface to read and write Apache Parquet files.

cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,9 +340,9 @@ TEST_F(TablesMockTest, SQLTablesTestGetMetadataForUnicodeTableByTableName) {
340340
TEST_F(TablesMockTest, SQLTablesTestGetMetadataForInvalidTableNameNoData) {
341341
this->CreateTestTables();
342342

343-
SQLWCHAR invalid_table_name[] = L"NonExistanttable_name";
343+
SQLWCHAR invalid_table_name[] = L"NonExistenttable_name";
344344

345-
// Try to get metadata for a non-existant table name
345+
// Try to get metadata for a non-existent table name
346346
ASSERT_EQ(SQL_SUCCESS, SQLTables(this->stmt, nullptr, SQL_NTS, nullptr, SQL_NTS,
347347
invalid_table_name, SQL_NTS, nullptr, SQL_NTS));
348348

cpp/subprojects/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In the default case, Meson will use the wrap file as a fallback. If a dependency
7070
can be satisfied by the system, then it will not use the wrap file to download
7171
any sources. However, you can toggle the behavior of the wrap system via the
7272
`--wrap-mode=` configuration option. `--wrap-mode=forcefallback` will always
73-
download and use the source defined in a wrap file, even if the depdendency could
73+
download and use the source defined in a wrap file, even if the dependency could
7474
be satisfied by the system. By contrast, `--wrap-mode=nofallback` will require
7575
that the system satisfies dependencies. For more ways to handle wrap dependencies,
7676
see https://mesonbuild.com/Subprojects.html#commandline-options

0 commit comments

Comments
 (0)