diff --git a/datafusion/physical-expr/src/array_expressions.rs b/datafusion/physical-expr/src/array_expressions.rs index 87eb10e72986..fdd13470c664 100644 --- a/datafusion/physical-expr/src/array_expressions.rs +++ b/datafusion/physical-expr/src/array_expressions.rs @@ -1754,7 +1754,7 @@ pub fn flatten(args: &[ArrayRef]) -> Result { Ok(Arc::new(flattened_array) as ArrayRef) } -/// Macro for dispatching array length computation based on the offset type. +/// Dispatch array length computation based on the offset type. fn array_length_dispatch(array: &[ArrayRef]) -> Result { let list_array = as_generic_list_array::(&array[0])?; let dimension = if array.len() == 2 {