We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47201a3 + 4d8453b commit 4bf4c3eCopy full SHA for 4bf4c3e
algorithms/sorting/merge-sort-recursive/merge-sort-recursive.js
@@ -22,7 +22,7 @@
22
*/
23
24
/**
25
- * Merges to arrays in order based on their natural
+ * Merges two arrays in order based on their natural
26
* relationship.
27
* @param {Array} left The first array to merge.
28
* @param {Array} right The second array to merge.
@@ -61,4 +61,4 @@ function mergeSort(items){
61
right = items.slice(middle);
62
63
return merge(mergeSort(left), mergeSort(right));
64
-}
+}
0 commit comments