diff options
author | Johannes Witt <johawitt@outlook.de> | 2021-09-05 21:49:28 +0200 |
---|---|---|
committer | Johannes Witt <johawitt@outlook.de> | 2021-09-05 21:49:57 +0200 |
commit | 48a8a59ad7f8b6cb309b1e605c228dd538cafc0f (patch) | |
tree | 0019a02712ae7ec30fd0f746a55637b08dba99cb /doc/classes/Array.xml | |
parent | f3ab0941335d373ce44317961af7fbc864ea5759 (diff) |
Specify description of Array.slices end parameter
Diffstat (limited to 'doc/classes/Array.xml')
-rw-r--r-- | doc/classes/Array.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml index 396490c8eb..02c6b18d55 100644 --- a/doc/classes/Array.xml +++ b/doc/classes/Array.xml @@ -495,7 +495,7 @@ <argument index="2" name="step" type="int" default="1" /> <argument index="3" name="deep" type="bool" default="false" /> <description> - Duplicates the subset described in the function and returns it in an array, deeply copying the array if [code]deep[/code] is [code]true[/code]. Lower and upper index are inclusive, with the [code]step[/code] describing the change between indices while slicing. + Duplicates the subset described in the function and returns it in an array, deeply copying the array if [code]deep[/code] is [code]true[/code]. Lower and upper index are inclusive, with the [code]step[/code] describing the change between indices while slicing. If [code]end[/code] is an invalid value, the end of the array is used. </description> </method> <method name="sort"> |