Merge pull request #16713 from aberrier/patch-2

fix: fix typo in array functions documentation
This commit is contained in:
alexey-milovidov 2020-11-05 19:41:51 +03:00 committed by GitHub
commit 045b274880
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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} ## has(arr, elem) {#hasarr-elem}
Checks whether the arr array has the elem element. 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. `NULL` is processed as a value.