Update sorting/selection_sort_recursive.c

Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-24 23:55:01 +05:30 committed by GitHub
parent 18a9974a0c
commit 33f9f85122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ int findIndex(int *arr, int size)
}
/**
* Selection Sort algorithm implemented using recursion
* @brief Selection Sort algorithm implemented using recursion
* @param arr array to be sorted
* @param size size of array
*/