From 458f6aad09db6a4b7939cfd7720f6fcd7c01c679 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sun, 28 Nov 2021 14:47:00 +0800 Subject: [PATCH] Update src/compute/lower.rs Co-authored-by: Jorge Leitao --- src/compute/lower.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compute/lower.rs b/src/compute/lower.rs index e635248bc0c..015a723bd2e 100644 --- a/src/compute/lower.rs +++ b/src/compute/lower.rs @@ -30,7 +30,7 @@ fn utf8_lower(array: &Utf8Array) -> Utf8Array { new.with_validity(array.validity().cloned()) } -/// Returns an ArrayRef with lowercase of each of the elements in `array`. +/// Returns a new `Array` where each of each of the elements is lower-cased. /// this function errors when the passed array is not a \[Large\]String array. pub fn lower(array: &dyn Array) -> Result> { match array.data_type() {