From 979b1e3ba7c9337c794dd7b1ac5d9b3d77e14b93 Mon Sep 17 00:00:00 2001 From: DhruvPasricha <78498002+DhruvPasricha@users.noreply.github.com> Date: Mon, 1 Mar 2021 10:16:43 +0530 Subject: [PATCH] Update sorting/selection_sort_recursive.c Co-authored-by: David Leal --- sorting/selection_sort_recursive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/selection_sort_recursive.c b/sorting/selection_sort_recursive.c index 0f5568ca..582f198e 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -27,7 +27,7 @@ void swap(uint8_t *first, uint8_t *second) * @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. + * @return min_index index of an element having a minimum value */ uint8_t findIndex(const uint8_t *arr, const uint8_t size) {