Commit 2e8d9a79 authored by Raymond Hettinger's avatar Raymond Hettinger

Fix typo

parent f6b26676
......@@ -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]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment