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

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 6140f7cba9 MINOR: [C++] Fix typo in arrow/cpp/* (#48666)
6140f7cba9 is described below

commit 6140f7cba9a425d8c646fc136e27fbb508fa263b
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Mon Dec 29 19:43:45 2025 +0900

    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 <[email protected]>
    Signed-off-by: David Li <[email protected]>
---
 cpp/README.md                                      | 2 +-
 cpp/examples/parquet/parquet_arrow/README.md       | 2 +-
 cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc | 4 ++--
 cpp/subprojects/README.md                          | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/cpp/README.md b/cpp/README.md
index 2c05b10fe1..321dd409d0 100644
--- a/cpp/README.md
+++ b/cpp/README.md
@@ -24,7 +24,7 @@ as well as for the C++ libraries for Apache Parquet.
 
 ## Installation
 
-See https://arrow.apache.org/install/ for the latest instructions how
+See https://arrow.apache.org/install/ for the latest instructions on how
 to install pre-compiled binary versions of the library.
 
 ## Source Builds and Development
diff --git a/cpp/examples/parquet/parquet_arrow/README.md 
b/cpp/examples/parquet/parquet_arrow/README.md
index e99819fd23..43b0901e37 100644
--- a/cpp/examples/parquet/parquet_arrow/README.md
+++ b/cpp/examples/parquet/parquet_arrow/README.md
@@ -17,4 +17,4 @@ Using parquet-cpp with the arrow interface
 
 This folder contains an example project that shows how to setup a CMake project
 that consumes `parquet-cpp` as a library as well as how you can use the
-`parquet/arrow` interface to reading and write Apache Parquet files.
+`parquet/arrow` interface to read and write Apache Parquet files.
diff --git a/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc 
b/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc
index 01a19337f4..c8d2330693 100644
--- a/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc
+++ b/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc
@@ -340,9 +340,9 @@ TEST_F(TablesMockTest, 
SQLTablesTestGetMetadataForUnicodeTableByTableName) {
 TEST_F(TablesMockTest, SQLTablesTestGetMetadataForInvalidTableNameNoData) {
   this->CreateTestTables();
 
-  SQLWCHAR invalid_table_name[] = L"NonExistanttable_name";
+  SQLWCHAR invalid_table_name[] = L"NonExistenttable_name";
 
-  //  Try to get metadata for a non-existant table name
+  //  Try to get metadata for a non-existent table name
   ASSERT_EQ(SQL_SUCCESS, SQLTables(this->stmt, nullptr, SQL_NTS, nullptr, 
SQL_NTS,
                                    invalid_table_name, SQL_NTS, nullptr, 
SQL_NTS));
 
diff --git a/cpp/subprojects/README.md b/cpp/subprojects/README.md
index 9a022c7336..158d07594c 100644
--- a/cpp/subprojects/README.md
+++ b/cpp/subprojects/README.md
@@ -70,7 +70,7 @@ In the default case, Meson will use the wrap file as a 
fallback. If a dependency
 can be satisfied by the system, then it will not use the wrap file to download
 any sources. However, you can toggle the behavior of the wrap system via the
 `--wrap-mode=` configuration option. `--wrap-mode=forcefallback` will always
-download and use the source defined in a wrap file, even if the depdendency 
could
+download and use the source defined in a wrap file, even if the dependency 
could
 be satisfied by the system. By contrast, `--wrap-mode=nofallback` will require
 that the system satisfies dependencies. For more ways to handle wrap 
dependencies,
 see https://mesonbuild.com/Subprojects.html#commandline-options

Reply via email to