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