Skip to content

Commit f69b56b

Browse files
jayzhan211Weijun-H
andauthored
Update docs/source/user-guide/expressions.md
Co-authored-by: Alex Huang <[email protected]>
1 parent 30ed8d7 commit f69b56b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/user-guide/expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Unlike to some databases the math functions in Datafusion works the same way as
185185
| array_concat(array[, ..., array_n]) | Concatenates arrays. `array_concat([1, 2, 3], [4, 5, 6]) -> [1, 2, 3, 4, 5, 6]` |
186186
| array_has(array, element) | Returns true if the array contains the element `array_has([1,2,3], 1) -> true` |
187187
| array_has_all(array, sub-array) | Returns true if all elements of sub-array exist in array `array_has_all([1,2,3], [1,3]) -> true` |
188-
| array_has_any(array, sub-array) | Returns true if any elements exist is both array `array_has_any([1,2,3], [1,4]) -> true` |
188+
| array_has_any(array, sub-array) | Returns true if any elements exist in both arrays `array_has_any([1,2,3], [1,4]) -> true` |
189189
| array_dims(array) | Returns an array of the array's dimensions. `array_dims([[1, 2, 3], [4, 5, 6]]) -> [2, 3]` |
190190
| array_fill(element, array) | Returns an array filled with copies of the given value. |
191191
| array_length(array, dimension) | Returns the length of the array dimension. `array_length([1, 2, 3, 4, 5]) -> 5` |

0 commit comments

Comments
 (0)