From 37a29008e6b77921a97a89ca8b7fd9e700aeccd0 Mon Sep 17 00:00:00 2001 From: Chen Anxue <46052474+cascades-sjtu@users.noreply.github.com> Date: Tue, 1 Mar 2022 22:24:07 +0800 Subject: [PATCH] docs: fix small typo (#1938) --- sorting/merge_sort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/merge_sort.cpp b/sorting/merge_sort.cpp index 54b385d89..e8bf5ccc5 100644 --- a/sorting/merge_sort.cpp +++ b/sorting/merge_sort.cpp @@ -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;