This commit is contained in:
Raymond Hettinger 2013-03-05 02:11:10 -05:00
parent f6b26676bc
commit 2e8d9a799d
1 changed files with 1 additions and 1 deletions

View File

@ -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]