summaryrefslogtreecommitdiffstats
path: root/doc/classes/Array.xml
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2021-04-04 23:25:40 +0300
committerYuri Sizov <yuris@humnom.net>2021-04-04 23:25:40 +0300
commitc526a1e22d088dbe6e9d944903d95cbf4e4436d7 (patch)
tree49f7a43bbf37ce9c37bd69a07f9c754ca96688bf /doc/classes/Array.xml
parented2f51b15fee22a35d2a975fd77a70fc291bd8de (diff)
downloadredot-engine-c526a1e22d088dbe6e9d944903d95cbf4e4436d7.tar.gz
Fix misformatted documentation from #47435, #42827, #46991
Diffstat (limited to 'doc/classes/Array.xml')
-rw-r--r--doc/classes/Array.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml
index f3cecc081a..54bbe7a94b 100644
--- a/doc/classes/Array.xml
+++ b/doc/classes/Array.xml
@@ -328,13 +328,6 @@
[b]Note:[/b] On large arrays, this method will be slower if the inserted element is close to the beginning of the array (index 0). This is because all elements placed after the newly inserted element have to be reindexed.
</description>
</method>
- <method name="reverse">
- <return type="void">
- </return>
- <description>
- Reverses the order of the elements in the array.
- </description>
- </method>
<method name="is_empty" qualifiers="const">
<return type="bool">
</return>
@@ -474,6 +467,13 @@
Resizes the array to contain a different number of elements. If the array size is smaller, elements are cleared, if bigger, new elements are [code]null[/code].
</description>
</method>
+ <method name="reverse">
+ <return type="void">
+ </return>
+ <description>
+ Reverses the order of the elements in the array.
+ </description>
+ </method>
<method name="rfind" qualifiers="const">
<return type="int">
</return>