Skip to content

Commit f9dd729

Browse files
authored
MINOR: [C++] Fix a typo in the doc of pyarrow.compute.ascii_upper (#48700)
### Rationale for this change in existing https://arrow.apache.org/docs/dev/python/generated/pyarrow.compute.ascii_upper.html > This function assumes the input is fully ASCII. It it may contain non-ASCII characters, use “utf8_upper” instead. ### What changes are included in this PR? Fix a typo in the docstring of `pyarrow.compute.ascii_upper` ### Are these changes tested? CI ### Are there any user-facing changes? yes, doc-only change Authored-by: Ruifeng Zheng <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 960f0d2 commit f9dd729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/compute/kernels/scalar_string_ascii.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ using AsciiTitle = StringTransformExec<Type, AsciiTitleTransform>;
804804
const FunctionDoc ascii_upper_doc(
805805
"Transform ASCII input to uppercase",
806806
("For each string in `strings`, return an uppercase version.\n\n"
807-
"This function assumes the input is fully ASCII. It it may contain\n"
807+
"This function assumes the input is fully ASCII. If it may contain\n"
808808
"non-ASCII characters, use \"utf8_upper\" instead."),
809809
{"strings"});
810810

0 commit comments

Comments
 (0)