chilin0525 opened a new pull request, #49303: URL: https://github.com/apache/arrow/pull/49303
### Rationale for this change The docstring for `SparseCSCMatrix.from_numpy` in `python/pyarrow/tensor.pxi` has incorrect parameter descriptions: https://github.com/apache/arrow/blob/111495870686ef269254232b876de3aee2f919b6/python/pyarrow/tensor.pxi#L978-L995 - `indptr` is described as "Range of the rows" but should be "Range of the columns" - `indices` is described as "Column indices" but should be "Row indices" ### What changes are included in this PR? Fix parameter descriptions in SparseCSCMatrix.from_numpy in python/pyarrow/tensor.pxi: * indptr: "Range of the rows" → "Range of the columns" * indices: "Column indices" → "Row indices" ### Are these changes tested? Yes. ### Are there any user-facing changes? No. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
