Skip to content

Commit 6a76f9f

Browse files
authored
fix: Forgot to add @param for sort function
1 parent 93f5432 commit 6a76f9f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sorting/quick_sort_iterative.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ int partition(std::vector<int> &arr, int start, int end)
4646
* and restoring the environment between calls.
4747
* It does not need the end and start params, because
4848
* it is not recursive.
49+
* @param arr array to be sorted
4950
* @return void
5051
*/
5152
void iterativeQuickSort(std::vector<int> &arr)

0 commit comments

Comments
 (0)