From 33f9f8512274fca6c6ac8255f756b24384407d56 Mon Sep 17 00:00:00 2001 From: DhruvPasricha <78498002+DhruvPasricha@users.noreply.github.com> Date: Wed, 24 Feb 2021 23:55:01 +0530 Subject: [PATCH] Update sorting/selection_sort_recursive.c Co-authored-by: Ayaan Khan --- 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 f904adfa..60e04da9 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -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 */