summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-12-12 07:56:32 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-12-12 07:56:32 (GMT)
commitd2a296a73a3a49d15fd3d1505c10e98ab8ad1a63 (patch)
tree5040eb2d07c84123f0117a03a794b91174b9d3a5 /Doc
parent4ac7ed97a8cabb5dba6aa25e32cd59d9854dda90 (diff)
downloadcpython-d2a296a73a3a49d15fd3d1505c10e98ab8ad1a63.zip
cpython-d2a296a73a3a49d15fd3d1505c10e98ab8ad1a63.tar.gz
cpython-d2a296a73a3a49d15fd3d1505c10e98ab8ad1a63.tar.bz2
Issue 23005: Fix typos
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/heapq.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/heapq.rst b/Doc/library/heapq.rst
index 6a61480..43088ad 100644
--- a/Doc/library/heapq.rst
+++ b/Doc/library/heapq.rst
@@ -260,11 +260,11 @@ However, there are other representations which are more efficient overall, yet
the worst cases might be terrible.
Heaps are also very useful in big disk sorts. You most probably all know that a
-big sort implies producing "runs" (which are pre-sorted sequences, which size is
+big sort implies producing "runs" (which are pre-sorted sequences, whose size is
usually related to the amount of CPU memory), followed by a merging passes for
these runs, which merging is often very cleverly organised [#]_. It is very
important that the initial sort produces the longest runs possible. Tournaments
-are a good way to that. If, using all the memory available to hold a
+are a good way to achieve that. If, using all the memory available to hold a
tournament, you replace and percolate items that happen to fit the current run,
you'll produce runs which are twice the size of the memory for random input, and
much better for input fuzzily ordered.