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

pitrou 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 b034f456ee3 MINOR: [Docs][MATLAB][Python] Fixed three minor issues 
(#51379)
b034f456ee3 is described below

commit b034f456ee305953263db37c04b7376c48ef9e8c
Author: Aaditya Srinivasan <[email protected]>
AuthorDate: Thu Sep 17 22:56:19 2026 +0530

    MINOR: [Docs][MATLAB][Python] Fixed three minor issues (#51379)
    
    ### Rationale for this change
    
    Fix three minor issues as discussed in 
https://github.com/apache/arrow/pull/51358#issuecomment-5710568289
    
    ### What changes are included in this PR?
    
    - Fix the punctuation in title-check comment.
    - Remove an extra parenthesis from the `pyrunfile` link in the MATLAB 
documentation.
    - Fix the `buffers` parameter name in the `buffers_to_array` documentation.
    
    ### Are these changes tested?
    
    These are minor documentation fixes.
    
    ### Are there any user-facing changes?
    
    Yes.
    
    ### Was AI used for this PR?
    
    In accordance to the [AI generation 
guidelines](https://arrow.apache.org/docs/dev/developers/overview.html#ai-generated-code),
 please disclose below whether and how AI was used in this PR.
    
    **PR code and description written by:**
    
    - [X] Human
    - [ ] AI
    
    **Reviewed before submission by:**
    
    - [X] Human
    - [ ] AI
    - [ ] Not reviewed
    
    Authored-by: Aaditya Srinivasan <[email protected]>
    Signed-off-by: Antoine Pitrou <[email protected]>
---
 .github/workflows/dev_pr/title_check.md                | 2 +-
 matlab/doc/matlab_interface_for_apache_arrow_design.md | 2 +-
 python/pyarrow/interchange/from_dataframe.py           | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/dev_pr/title_check.md 
b/.github/workflows/dev_pr/title_check.md
index 9c2818d02bd..1919e0cadb4 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.
 
diff --git a/matlab/doc/matlab_interface_for_apache_arrow_design.md 
b/matlab/doc/matlab_interface_for_apache_arrow_design.md
index bf3fe442a26..be9d1c985be 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 st [...]
 
-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: 
 
diff --git a/python/pyarrow/interchange/from_dataframe.py 
b/python/pyarrow/interchange/from_dataframe.py
index fc6530a8331..dba92a3aac4 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],

Reply via email to