Skip to content

Commit

Permalink
docs: fix small typo (TheAlgorithms#1938)
Browse files Browse the repository at this point in the history
  • Loading branch information
x14ngch3n authored Mar 1, 2022
1 parent 0f5b36d commit 37a2900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorting/merge_sort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* (The second array starts form m+1 and goes till l)
*
* @param l - end index or right index of second half array
* @param r - end index or right index of second half array
*/
void merge(int *arr, int l, int m, int r) {
int i, j, k;
Expand Down

0 comments on commit 37a2900

Please sign in to comment.