You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2023/07/17 09:58:22 UTC

[arrow-datafusion] branch main updated: chore (#6991)

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 0fad1a0f38 chore (#6991)
0fad1a0f38 is described below

commit 0fad1a0f389e0c408dd8f5a6807b3c504bf513b4
Author: Alex Huang <hu...@gmail.com>
AuthorDate: Mon Jul 17 17:58:16 2023 +0800

    chore (#6991)
---
 datafusion/expr/src/expr_fn.rs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/datafusion/expr/src/expr_fn.rs b/datafusion/expr/src/expr_fn.rs
index 4773737674..b175fc6f51 100644
--- a/datafusion/expr/src/expr_fn.rs
+++ b/datafusion/expr/src/expr_fn.rs
@@ -520,7 +520,7 @@ scalar_expr!(
     num,
     "returns the hexdecimal representation of an integer"
 );
-scalar_expr!(Uuid, uuid, , "Returns uuid v4 as a string value");
+scalar_expr!(Uuid, uuid, , "returns uuid v4 as a string value");
 scalar_expr!(Log, log, base x, "logarithm of a `x` for a particular `base`");
 
 // array functions
@@ -535,8 +535,7 @@ scalar_expr!(
     ArrayContains,
     array_contains,
     first_array second_array,
-"returns true, if each element of the second array appe
-    aring in the first array, otherwise false."
+    "returns true, if each element of the second array appearing in the first array, otherwise false."
 );
 scalar_expr!(
     ArrayDims,