[Python-checkins] cpython (3.3): Fix typo

raymond.hettinger python-checkins at python.org
Tue Mar 5 08:12:00 CET 2013


http://hg.python.org/cpython/rev/b691f25c3553
changeset:   82486:b691f25c3553
branch:      3.3
parent:      82484:de6627cf81f4
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Mar 05 02:11:10 2013 -0500
summary:
  Fix typo

files:
  Lib/heapq.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/heapq.py b/Lib/heapq.py
--- a/Lib/heapq.py
+++ b/Lib/heapq.py
@@ -320,7 +320,7 @@
     heap[pos] = newitem
 
 def _siftup_max(heap, pos):
-    'Minheap variant of _siftup'
+    'Maxheap variant of _siftup'
     endpos = len(heap)
     startpos = pos
     newitem = heap[pos]

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list