diff options
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r-- | Lib/heapq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py index fee7a24..2c30b12 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -238,7 +238,7 @@ def _siftup(heap, pos): heap[pos] = heap[childpos] pos = childpos childpos = 2*pos + 1 - # The leaf at pos is empty now. Put newitem there, and and bubble it up + # The leaf at pos is empty now. Put newitem there, and bubble it up # to its final resting place (by sifting its parents down). heap[pos] = newitem _siftdown(heap, startpos, pos) |