From 6c874bd7cd178102cc57a0d238f4267bfdd503a0 Mon Sep 17 00:00:00 2001 From: DhruvPasricha <78498002+DhruvPasricha@users.noreply.github.com> Date: Wed, 24 Feb 2021 23:58:06 +0530 Subject: [PATCH] Update sorting/selection_sort_recursive.c Co-authored-by: Ayaan Khan --- 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 ac9a7fee..cb1ce78e 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -23,7 +23,7 @@ void swap(int *first, int *second) /** * @brief returned the index having minimum value using recursion - * @param arr array to be sorted + * @param arr array to be sorted * @param size size of array */ int findIndex(const int *arr, const int size)