Update sorting/selection_sort_recursive.c

Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-24 23:54:53 +05:30 committed by GitHub
parent f894ff2ac3
commit 18a9974a0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ void swap(int *first, int *second)
}
/**
* returned the index having minimum value using recursion
* @brief returned the index having minimum value using recursion
* @param arr array to be sorted
* @param size size of array
*/