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) {