Merge pull request #94842 from edassis/master

Fix typo in Array's `sort()` method description
This commit is contained in:
Rémi Verschelde 2024-07-28 17:47:02 +02:00
commit c2bf146fb6
No known key found for this signature in database
GPG key ID: C3336907360768E1

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]