1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Fix typo in Array's sort() method description

This commit is contained in:
Eduardo Assis
2024-07-27 15:58:47 -03:00
parent 607b230ffe
commit 5ada090d74

View File

@@ -694,7 +694,7 @@
<method name="sort">
<return type="void" />
<description>
Sorts the array in ascending order. The final order is dependent on the "less than" ([code]&gt;[/code]) comparison between elements.
Sorts the array in ascending order. The final order is dependent on the "less than" ([code]&lt;[/code]) comparison between elements.
[codeblocks]
[gdscript]
var numbers = [10, 5, 2.5, 8]