Update sorting/selection_sort_recursive.c

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
DhruvPasricha
2021-02-25 00:36:51 +05:30
committed by GitHub
parent 30b43869d4
commit a0d02ed307

View File

@@ -23,7 +23,7 @@ void swap(int *first, int *second)
}
/**
* @brief returned the index having minimum value using recursion
* @brief Returns 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.