From: Raymond Hettinger Date: Tue, 5 Mar 2013 07:11:10 +0000 (-0500) Subject: Fix typo X-Git-Tag: v3.3.1rc1~94 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e8d9a799d9827faa4b9bcd981959422b63e629e;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Lib/heapq.py b/Lib/heapq.py index 6859821feeea..00b429c2d36e 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]