diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml index fc1c71fe0..f6ec6f289 100644 --- a/doc/classes/Array.xml +++ b/doc/classes/Array.xml @@ -184,7 +184,7 @@ - Removes the first occurrence of a value from the array. To remove an element by index, use [method remove] instead. + Removes the first occurrence of a value from the array. If the value does not exist in the array, nothing happens. To remove an element by index, use [method remove] instead. [b]Note:[/b] This method acts in-place and doesn't return a value. [b]Note:[/b] On large arrays, this method will be slower if the removed element is close to the beginning of the array (index 0). This is because all elements placed after the removed element have to be reindexed.