From 5f7617b5f634dd52e6b3995198f18dd870ef22f2 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 11 Aug 2002 18:28:09 +0000 Subject: [PATCH] Fixed misspelling in comment. --- Lib/heapq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/heapq.py b/Lib/heapq.py index 698e6fe27af..15b728a4659 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):