Przeglądaj źródła

Merge pull request #3686 from markknol/patch-1

Array.sort documentation fix
Simon Krajewski 10 lat temu
rodzic
commit
54f4465521
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      std/Array.hx

+ 1 - 1
std/Array.hx

@@ -138,7 +138,7 @@ extern class Array<T> {
 
 
 		The sort operation is not guaranteed to be stable, which means that the
 		The sort operation is not guaranteed to be stable, which means that the
 		order of equal elements may not be retained. For a stable Array sorting
 		order of equal elements may not be retained. For a stable Array sorting
-		algorithm, `haxe.ds.sort.MergeSort.sort()` can be used instead.
+		algorithm, `haxe.ds.ArraySort.sort()` can be used instead.
 
 
 		If `f` is null, the result is unspecified.
 		If `f` is null, the result is unspecified.
 	**/
 	**/