From ef1bf8849e01cf7f9c24315752e8c9b128615952 Mon Sep 17 00:00:00 2001 From: Deep Raval Date: Mon, 20 Jul 2020 00:12:01 +0530 Subject: [PATCH] Fixed an issue related to doc (doxygen) (#960) --- sorting/bogo_sort.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sorting/bogo_sort.cpp b/sorting/bogo_sort.cpp index a7dfd8496..62fbef48e 100644 --- a/sorting/bogo_sort.cpp +++ b/sorting/bogo_sort.cpp @@ -9,10 +9,10 @@ * exist: a deterministic version that enumerates all permutations until it hits a sorted one, * and a randomized version that randomly permutes its input.Randomized version is implemented here. * - * Algorithm - - * - * Shuffle the array untill array is sorted. + * ### Algorithm + * Shuffle the array untill array is sorted. * + * @author [Deep Raval](https://github.com/imdeep2905) */ #include #include