We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f68d7d commit ac43d79Copy full SHA for ac43d79
1 file changed
src/sorting/mergesort.js
@@ -13,6 +13,7 @@
13
* Mergesort method which is recursively called for sorting the input array.
14
*
15
* @public
16
+ * @module sorting/mergesort
17
* @param {array} array The array which should be sorted
18
* @param {Function} cmp Compares two items in an array
19
* @param {number} start Left side of the subarray
@@ -38,6 +39,7 @@
38
39
* Devides and sort merges two subarrays of given array
40
41
42
43
* @param {array} array The array which subarrays should be sorted
44
* @param {number} start The start of the first subarray.
45
* This subarray is with end middle - 1.
0 commit comments