From 9dd0c7708e7ab0e416bd31652e2ad411ec5a06b3 Mon Sep 17 00:00:00 2001 From: Alain BERRIER <24854656+aberrier@users.noreply.github.com> Date: Thu, 5 Nov 2020 16:23:23 +0100 Subject: [PATCH] fix: fix typo in array functions documentation --- docs/en/sql-reference/functions/array-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/functions/array-functions.md b/docs/en/sql-reference/functions/array-functions.md index 50d1ae2aed4..abdf778c089 100644 --- a/docs/en/sql-reference/functions/array-functions.md +++ b/docs/en/sql-reference/functions/array-functions.md @@ -89,7 +89,7 @@ If the index falls outside of the bounds of an array, it returns some default va ## has(arr, elem) {#hasarr-elem} Checks whether the ‘arr’ array has the ‘elem’ element. -Returns 0 if the the element is not in the array, or 1 if it is. +Returns 0 if the element is not in the array, or 1 if it is. `NULL` is processed as a value.