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)