Browse Source

Merge pull request #22420 from PiOverFour/master

Doc: fix example in Array sort_custom()
Rémi Verschelde 7 years ago
parent
commit
525b8fdab3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/classes/Array.xml

+ 1 - 1
doc/classes/Array.xml

@@ -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")