This is an automated email from the ASF dual-hosted git repository.
alenka 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 c2e8f253e6 MINOR: [Python][Docs] Fix typo (#34362)
c2e8f253e6 is described below
commit c2e8f253e6b675a7caed61449b0c720f675911a1
Author: eitsupi <[email protected]>
AuthorDate: Tue Feb 28 03:11:09 2023 +0900
MINOR: [Python][Docs] Fix typo (#34362)
### Rationale for this change
Fix the typo found in #34340 which copied from this file.
### What changes are included in this PR?
Minor typo fixes.
### Are these changes tested?
No. Minor documentation changes only.
### Are there any user-facing changes?
No.
Authored-by: SHIMA Tatsuya <[email protected]>
Signed-off-by: Alenka Frim <[email protected]>
---
python/pyarrow/_csv.pyx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/python/pyarrow/_csv.pyx b/python/pyarrow/_csv.pyx
index 0ac32f1bbf..fa6a299bd4 100644
--- a/python/pyarrow/_csv.pyx
+++ b/python/pyarrow/_csv.pyx
@@ -110,7 +110,7 @@ cdef class ReadOptions(_Weakrefable):
block, and empty rows are counted.
The order of application is as follows:
- `skip_rows` is applied (if non-zero);
- - column names aread (unless `column_names` is set);
+ - column names are read (unless `column_names` is set);
- `skip_rows_after_names` is applied (if non-zero).
column_names : list, optional
The column names of the target table. If empty, fall back on
@@ -251,7 +251,7 @@ cdef class ReadOptions(_Weakrefable):
block, and empty rows are counted.
The order of application is as follows:
- `skip_rows` is applied (if non-zero);
- - column names aread (unless `column_names` is set);
+ - column names are read (unless `column_names` is set);
- `skip_rows_after_names` is applied (if non-zero).
"""
return deref(self.options).skip_rows_after_names