pitrou commented on a change in pull request #10857:
URL: https://github.com/apache/arrow/pull/10857#discussion_r682534410



##########
File path: cpp/src/arrow/compute/kernels/scalar_string.cc
##########
@@ -4028,17 +4087,14 @@ const FunctionDoc utf8_lower_doc(
     "Transform input to lowercase",
     ("For each string in `strings`, return a lowercase version."), 
{"strings"});
 
-const FunctionDoc ascii_reverse_doc(
-    "Reverse ASCII input",
-    ("For each ASCII string in `strings`, return a reversed version.\n\n"
-     "This function assumes the input is fully ASCII.  If it may contain\n"
-     "non-ASCII characters, use \"utf8_reverse\" instead."),
-    {"strings"});
+const FunctionDoc utf8_capitalize_doc(
+    "Capitalize the first codepoint of UTF8 input",
+    ("For each UTF8 string in `strings`, return a capitalized version."), 
{"strings"});

Review comment:
       Nit, but no need to specify "UTF8". The input is of string type, so UTF8 
by definition.




-- 
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]


Reply via email to