From 7ab318685f9c8d65a31505c2b21abfb0a90f2fd4 Mon Sep 17 00:00:00 2001 From: Lajat5 <64376519+Lazeeez@users.noreply.github.com> Date: Thu, 7 Oct 2021 04:00:25 +0530 Subject: [PATCH] Update selection_sort_iterative.cpp --- sorting/selection_sort_iterative.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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