From 52b2afeb866e713271e50513d20ac8ac19700d69 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Sat, 31 Aug 2024 11:36:30 +0530 Subject: [PATCH] doc: remove include statement from comment --- sorting/selection_sort_recursive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/selection_sort_recursive.cpp b/sorting/selection_sort_recursive.cpp index 80f9ac719..765b97098 100644 --- a/sorting/selection_sort_recursive.cpp +++ b/sorting/selection_sort_recursive.cpp @@ -28,7 +28,7 @@ */ #include /// for std::is_sorted -#include /// for assert#include /// for integral typedefs +#include /// for assert #include /// for integral typedefs #include /// for std::swap and io operations #include /// for std::vector