Commit other files changed by file_format.sh

This commit is contained in:
Aaron Franke 2020-07-13 14:13:38 -04:00
parent d8b65461e3
commit 9986439352
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
60 changed files with 73 additions and 73 deletions

View file

@ -227,10 +227,10 @@
<description>
Returns [code]true[/code] if the array contains the given value.
[codeblock]
["inside", 7].has("inside") == true
["inside", 7].has("outside") == false
["inside", 7].has(7) == true
["inside", 7].has("7") == false
print(["inside", 7].has("inside")) # True
print(["inside", 7].has("outside")) # False
print(["inside", 7].has(7)) # True
print(["inside", 7].has("7")) # False
[/codeblock]
[b]Note:[/b] This is equivalent to using the [code]in[/code] operator as follows:
[codeblock]