Skip to content

Commit 4bf4c3e

Browse files
committed
Merge pull request #29 from xelad1/patch-1
Changed typo of "to arrays" to "two arrays"
2 parents 47201a3 + 4d8453b commit 4bf4c3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

algorithms/sorting/merge-sort-recursive/merge-sort-recursive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323

2424
/**
25-
* Merges to arrays in order based on their natural
25+
* Merges two arrays in order based on their natural
2626
* relationship.
2727
* @param {Array} left The first array to merge.
2828
* @param {Array} right The second array to merge.
@@ -61,4 +61,4 @@ function mergeSort(items){
6161
right = items.slice(middle);
6262

6363
return merge(mergeSort(left), mergeSort(right));
64-
}
64+
}

0 commit comments

Comments
 (0)