Browse Source

Array.sort documentation fix

Reference to `haxe.ds.sort.MergeSort` should be `haxe.ds.ArraySort`
Mark Knol 10 years ago
parent
commit
bf12fcd6fa
1 changed files with 1 additions and 1 deletions
  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
 		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.
 	**/