From ee282d3687bf77f289b6282e9e7782baf2513bd3 Mon Sep 17 00:00:00 2001 From: Palash Sharma <54630543+palashsharma891@users.noreply.github.com> Date: Tue, 28 Jul 2020 11:25:35 +0530 Subject: [PATCH] Update min_heap.py (#2245) Changed min head to min heap in the first line. --- data_structures/heap/min_heap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/heap/min_heap.py b/data_structures/heap/min_heap.py index 5b9631919..9265c4839 100644 --- a/data_structures/heap/min_heap.py +++ b/data_structures/heap/min_heap.py @@ -1,4 +1,4 @@ -# Min head data structure +# Min heap data structure # with decrease key functionality - in O(log(n)) time