summaryrefslogtreecommitdiffstats
path: root/Doc/howto/sorting.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-01-12 04:44:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-01-12 04:44:41 (GMT)
commit1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140 (patch)
treef99a451eb970a00f3d12e38b7f196e560c312730 /Doc/howto/sorting.rst
parente993b10041cd746e570c388ba13a7f0ee260a4c2 (diff)
downloadcpython-1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140.zip
cpython-1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140.tar.gz
cpython-1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140.tar.bz2
fix weirdly ambigious sentence
Diffstat (limited to 'Doc/howto/sorting.rst')
-rw-r--r--Doc/howto/sorting.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/sorting.rst b/Doc/howto/sorting.rst
index 134c9ce..3c8e7c2 100644
--- a/Doc/howto/sorting.rst
+++ b/Doc/howto/sorting.rst
@@ -8,8 +8,8 @@ Sorting HOW TO
Python lists have a built-in :meth:`list.sort` method that modifies the list
-in-place and a :func:`sorted` built-in function that builds a new sorted list
-from an iterable.
+in-place. There is also a :func:`sorted` built-in function that builds a new
+sorted list from an iterable.
In this document, we explore the various techniques for sorting data using Python.