summaryrefslogtreecommitdiff
path: root/Lib/heapq.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r--Lib/heapq.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index 6859821fee..00b429c2d3 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -320,7 +320,7 @@ def _siftdown_max(heap, startpos, pos):
heap[pos] = newitem
def _siftup_max(heap, pos):
- 'Minheap variant of _siftup'
+ 'Maxheap variant of _siftup'
endpos = len(heap)
startpos = pos
newitem = heap[pos]