This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new d5befdb55f chore (#7314)
d5befdb55f is described below
commit d5befdb55f620ce484b6fd0e7c6f161f7507a8a2
Author: Alex Huang <[email protected]>
AuthorDate: Thu Aug 17 21:22:37 2023 +0800
chore (#7314)
---
datafusion/expr/src/expr_fn.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/datafusion/expr/src/expr_fn.rs b/datafusion/expr/src/expr_fn.rs
index 3ca6aa5d6e..47692dfefb 100644
--- a/datafusion/expr/src/expr_fn.rs
+++ b/datafusion/expr/src/expr_fn.rs
@@ -550,19 +550,19 @@ scalar_expr!(
ArrayHas,
array_has,
first_array second_array,
-"Returns true, if the element appears in the first array, otherwise false."
+ "returns true, if the element appears in the first array, otherwise false."
);
scalar_expr!(
ArrayHasAll,
array_has_all,
first_array second_array,
-"Returns true if each element of the second array appears in the first array;
otherwise, it returns false."
+ "returns true if each element of the second array appears in the first
array; otherwise, it returns false."
);
scalar_expr!(
ArrayHasAny,
array_has_any,
first_array second_array,
-"Returns true if at least one element of the second array appears in the first
array; otherwise, it returns false."
+ "returns true if at least one element of the second array appears in the
first array; otherwise, it returns false."
);
scalar_expr!(
Flatten,