From: Tim Peters Date: Sun, 11 Aug 2002 18:28:09 +0000 (+0000) Subject: Fixed misspelling in comment. X-Git-Tag: v2.3c1~4545 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f7617b5f634dd52e6b3995198f18dd870ef22f2;p=thirdparty%2FPython%2Fcpython.git Fixed misspelling in comment. --- diff --git a/Lib/heapq.py b/Lib/heapq.py index 698e6fe27aff..15b728a46594 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -218,7 +218,7 @@ def _siftdown(heap, startpos, pos): # # The total compares needed by list.sort() on the same lists were 8627, # 8627, and 8632 (this should be compared to the sum of heapify() and -# heappop() compares): list.sort() is (unsurprisingly!) more efficent +# heappop() compares): list.sort() is (unsurprisingly!) more efficient # for sorting. def _siftup(heap, pos):