Update sorting/selection_sort_recursive.c

Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-25 00:00:52 +05:30 committed by GitHub
parent 08cf618094
commit 7b23edbfd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
/**
* @brief Swapped two numbers using pointer
* @param first pointer of first number
* @param second second pointer of second number
* @param second pointer of second number
*/
void swap(int *first, int *second)
{