Skip to content

Commit 0969e16

Browse files
authored
Update sorting.inc
1 parent 63e6f81 commit 0969e16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/include/sorting.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ typedef SortFunc2D = function int (any[] elem1, any[] elem2, const any[][] array
127127
* @param array Array to sort.
128128
* @param array_size Size of the major array to sort (first index, outermost).
129129
* @param sortfunc Sort comparison function to use.
130-
* @param hndl Optional Handle to pass through the comparison calls.
130+
* @param data Optional Handle or value to pass through the comparison calls.
131131
*/
132132
native void SortCustom2D(any[][] array, int array_size, SortFunc2D sortfunc, any data=0);
133133

@@ -160,6 +160,6 @@ typedef SortFuncADTArray = function int (int index1, int index2, Handle array, a
160160
*
161161
* @param array Array Handle to sort
162162
* @param sortfunc Sort comparison function to use
163-
* @param data Optional Handle or data to pass through the comparison calls.
163+
* @param data Optional Handle or value to pass through the comparison calls.
164164
*/
165165
native void SortADTArrayCustom(Handle array, SortFuncADTArray sortfunc, any data=0);

0 commit comments

Comments
 (0)