summaryrefslogtreecommitdiffstats
path: root/Lib/heapq.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-11-13 14:38:17 (GMT)
committerFred Drake <fdrake@acm.org>2002-11-13 14:38:17 (GMT)
commitf2928eb0179ade849ca3b8220bd5a4018babb1c1 (patch)
treefd27bc1a3802a8672fa4e8d373dbf9860bd80652 /Lib/heapq.py
parent85571567179585b69d884c4a15bbc6b88a0ca200 (diff)
downloadcpython-f2928eb0179ade849ca3b8220bd5a4018babb1c1.zip
cpython-f2928eb0179ade849ca3b8220bd5a4018babb1c1.tar.gz
cpython-f2928eb0179ade849ca3b8220bd5a4018babb1c1.tar.bz2
Fix typo in comment.
Diffstat (limited to 'Lib/heapq.py')
-rw-r--r--Lib/heapq.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/heapq.py b/Lib/heapq.py
index fd7eea5..fee7a24 100644
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -208,8 +208,8 @@ def _siftdown(heap, startpos, pos):
# heappop() a lot, in accord with theory. Here are typical results from 3
# runs (3 just to demonstrate how small the variance is):
#
-# Compares needed by heapify Compares needed by 1000 heapppops
-# -------------------------- ---------------------------------
+# Compares needed by heapify Compares needed by 1000 heappops
+# -------------------------- --------------------------------
# 1837 cut to 1663 14996 cut to 8680
# 1855 cut to 1659 14966 cut to 8678
# 1847 cut to 1660 15024 cut to 8703