fix: fix typo in array functions documentation

This commit is contained in:
Alain BERRIER 2020-11-05 16:23:23 +01:00 committed by GitHub
parent 39cd1c0371
commit 9dd0c7708e
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}
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.