From 30b43869d449b4cb3745ab08472c3d6e449bcc14 Mon Sep 17 00:00:00 2001 From: DhruvPasricha <78498002+DhruvPasricha@users.noreply.github.com> Date: Thu, 25 Feb 2021 00:36:39 +0530 Subject: [PATCH] Update sorting/selection_sort_recursive.c Co-authored-by: David Leal --- sorting/selection_sort_recursive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/selection_sort_recursive.c b/sorting/selection_sort_recursive.c index 15570b56..36de3e7a 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -26,7 +26,7 @@ void swap(int *first, int *second) * @brief returned the index having minimum value using recursion * @param arr array to be sorted * @param size size of array -* @return min_index index of element having minimum value. + * @return min_index index of element having minimum value. */ int findIndex(const int *arr, const int size) {