From 0969e16659836747a6cff17594b005d50aa1e8cd Mon Sep 17 00:00:00 2001 From: Arron Vinyard Date: Wed, 4 May 2022 05:50:08 -0400 Subject: [PATCH] Update sorting.inc --- plugins/include/sorting.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/sorting.inc b/plugins/include/sorting.inc index 4df93fae13..9ecfc5ec4d 100644 --- a/plugins/include/sorting.inc +++ b/plugins/include/sorting.inc @@ -127,7 +127,7 @@ typedef SortFunc2D = function int (any[] elem1, any[] elem2, const any[][] array * @param array Array to sort. * @param array_size Size of the major array to sort (first index, outermost). * @param sortfunc Sort comparison function to use. - * @param hndl Optional Handle to pass through the comparison calls. + * @param data Optional Handle or value to pass through the comparison calls. */ native void SortCustom2D(any[][] array, int array_size, SortFunc2D sortfunc, any data=0); @@ -160,6 +160,6 @@ typedef SortFuncADTArray = function int (int index1, int index2, Handle array, a * * @param array Array Handle to sort * @param sortfunc Sort comparison function to use - * @param data Optional Handle or data to pass through the comparison calls. + * @param data Optional Handle or value to pass through the comparison calls. */ native void SortADTArrayCustom(Handle array, SortFuncADTArray sortfunc, any data=0);