]> granicus.if.org Git - python/commitdiff
Merged revisions 87949 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Wed, 12 Jan 2011 04:51:02 +0000 (04:51 +0000)
committerBenjamin Peterson <benjamin@python.org>
Wed, 12 Jan 2011 04:51:02 +0000 (04:51 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87949 | benjamin.peterson | 2011-01-11 22:44:41 -0600 (Tue, 11 Jan 2011) | 1 line

  fix weirdly ambigious sentence
........

Doc/howto/sorting.rst

index 31a601f8b51272fdfee8f85bf0154c67f8883e86..351713f2cf0770918580e58651bee3e4e46b8a9c 100644 (file)
@@ -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.