Doc: fix example in Array sort_custom()

This commit is contained in:
Damien Picard 2018-09-25 11:46:45 +02:00
parent 5adf7aa6b7
commit 5e8e216ee0

View file

@ -321,7 +321,7 @@
static func sort(a, b):
if a[0] < b[0]:
return true
return false
return false
var my_items = [[5, "Potato"], [9, "Rice"], [4, "Tomato"]]
my_items.sort_custom(MyCustomSorter, "sort")