Merge pull request #35801 from Calinou/array-sort-add-example

doc: Add an example for `Array.sort()`
This commit is contained in:
Rémi Verschelde 2020-01-31 22:56:58 +01:00 committed by GitHub
commit 188dc714b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -322,7 +322,12 @@
<method name="sort">
<description>
Sorts the array.
[b]Note:[/b] strings are sorted in alphabetical, not natural order.
[b]Note:[/b] Strings are sorted in alphabetical order (as opposed to natural order). This may lead to unexpected behavior when sorting an array of strings ending with a sequence of numbers. Consider the following example:
[codeblock]
var strings = ["string1", "string2", "string10", "string11"]
strings.sort()
print(strings) # Prints [string1, string10, string11, string2]
[/codeblock]
</description>
</method>
<method name="sort_custom">