From 5b6d1c6b443fa9e3c7837660c1533ecb631fd870 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Sat, 20 Jun 2020 18:38:30 +0000 Subject: [PATCH] formatting source-code for 803981c831b36bf940d3fa2a901340cb0029717b --- sorting/heap_sort.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sorting/heap_sort.cpp b/sorting/heap_sort.cpp index e35b97b89..8917aeec2 100644 --- a/sorting/heap_sort.cpp +++ b/sorting/heap_sort.cpp @@ -40,8 +40,8 @@ auto printArray = [](int *arr, int sz) { /** * - * The heapify procedure can be thought of as building a heap from - * the bottom up by successively sifting downward to establish the + * The heapify procedure can be thought of as building a heap from + * the bottom up by successively sifting downward to establish the * heap property. * */