From a0d02ed307bcfb68c2cdbbc190a36148cda99f5d Mon Sep 17 00:00:00 2001 From: DhruvPasricha <78498002+DhruvPasricha@users.noreply.github.com> Date: Thu, 25 Feb 2021 00:36:51 +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 36de3e7a..b97325c8 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -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.