From 3455080f66e60be290b70aa8a454082cf7433689 Mon Sep 17 00:00:00 2001 From: Aaditya Srinivasan Date: Thu, 17 Sep 2026 22:13:32 +0530 Subject: [PATCH 1/3] Remove period add comma --- .github/workflows/dev_pr/title_check.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev_pr/title_check.md b/.github/workflows/dev_pr/title_check.md index 9c2818d02bd5..1919e0cadb4a 100644 --- a/.github/workflows/dev_pr/title_check.md +++ b/.github/workflows/dev_pr/title_check.md @@ -21,7 +21,7 @@ Thanks for opening a pull request! **This pull request has been automatically converted to a draft because its title doesn't match Arrow's required format.** -If this is not a [minor PR](https://github.com/apache/arrow/blob/main/CONTRIBUTING.md#Minor-Fixes). Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose +If this is not a [minor PR](https://github.com/apache/arrow/blob/main/CONTRIBUTING.md#Minor-Fixes), could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the [Openness](http://theapacheway.com/open/#:~:text=Openness%20allows%20new%20users%20the,must%20happen%20in%20the%20open.) of the Apache Arrow project. From aa772c06f763bd2e22b8ae5c20f9a8688f1e6b7e Mon Sep 17 00:00:00 2001 From: Aaditya Srinivasan Date: Thu, 17 Sep 2026 22:13:51 +0530 Subject: [PATCH 2/3] Remove extra parenthesis --- matlab/doc/matlab_interface_for_apache_arrow_design.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/doc/matlab_interface_for_apache_arrow_design.md b/matlab/doc/matlab_interface_for_apache_arrow_design.md index bf3fe442a260..be9d1c985be0 100644 --- a/matlab/doc/matlab_interface_for_apache_arrow_design.md +++ b/matlab/doc/matlab_interface_for_apache_arrow_design.md @@ -179,7 +179,7 @@ To share a MATLAB `arrow.Array` with PyArrow efficiently, a user could use the ` Memory addresses for the `ArrowArray` and `ArrowSchema` structs are returned by the call to `export`. These addresses can be passed to Python directly, without having to make any copies of the underlying Arrow data structures that they refer to. A user can then wrap the underlying data pointed to by the `ArrowArray` struct (which is already in the [Arrow Columnar Format]), as well as extract the necessary metadata from the `ArrowSchema` struct, to create a `pyarrow.Array` by using the static method `pyarrow.Array._import_from_c`. -Multiple lines of Python are required to import the Arrow array from MATLAB. Therefore, the function [`pyrunfile`]((https://www.mathworks.com/help/matlab/ref/pyrunfile.html)) can be used which can run Python scripts defined in an external file. +Multiple lines of Python are required to import the Arrow array from MATLAB. Therefore, the function [`pyrunfile`](https://www.mathworks.com/help/matlab/ref/pyrunfile.html) can be used which can run Python scripts defined in an external file. ###### Example Code: From b657afe45a9ce20b0234f57048297d9ac6678298 Mon Sep 17 00:00:00 2001 From: Aaditya Srinivasan Date: Thu, 17 Sep 2026 22:14:41 +0530 Subject: [PATCH 3/3] Fix parameter name --- python/pyarrow/interchange/from_dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/interchange/from_dataframe.py b/python/pyarrow/interchange/from_dataframe.py index fc6530a83316..dba92a3aac42 100644 --- a/python/pyarrow/interchange/from_dataframe.py +++ b/python/pyarrow/interchange/from_dataframe.py @@ -330,7 +330,7 @@ def buffers_to_array( Parameters ---------- - buffer : ColumnBuffers + buffers : ColumnBuffers Dictionary containing tuples of underlying buffers and their associated dtype. data_type : Tuple[DtypeKind, int, str, str],