Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2e8d9a7

Browse files
committed
Fix typo
1 parent f6b2667 commit 2e8d9a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/heapq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def _siftdown_max(heap, startpos, pos):
320320
heap[pos] = newitem
321321

322322
def _siftup_max(heap, pos):
323-
'Minheap variant of _siftup'
323+
'Maxheap variant of _siftup'
324324
endpos = len(heap)
325325
startpos = pos
326326
newitem = heap[pos]

0 commit comments

Comments
 (0)