diff --git a/sorting/selection_sort_recursive.c b/sorting/selection_sort_recursive.c index b97325c8..45f894e7 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -49,7 +49,8 @@ int findIndex(const int *arr, const int size) /** * @brief Selection Sort algorithm implemented using recursion * @param arr array to be sorted - * @param size size of array + * @param size size of the array + * @returns void */ void selectionSort(int *arr, const int size) {