diff --git a/sorting/selection_sort_iterative.cpp b/sorting/selection_sort_iterative.cpp index 6c0167aff..be64a454e 100644 --- a/sorting/selection_sort_iterative.cpp +++ b/sorting/selection_sort_iterative.cpp @@ -1,8 +1,8 @@ /****************************************************************************** * @file * @brief Implementation of the [Selection - *sort](https://en.wikipedia.org/wiki/Selection_sort) implementation using - *swapping + * sort](https://en.wikipedia.org/wiki/Selection_sort) implementation using + * swapping * @details * The selection sort algorithm divides the input vector into two parts: a * sorted subvector of items which is built up from left to right at the front