[Python-checkins] r87949 - python/branches/py3k/Doc/howto/sorting.rst

benjamin.peterson python-checkins at python.org
Wed Jan 12 05:44:42 CET 2011


Author: benjamin.peterson
Date: Wed Jan 12 05:44:41 2011
New Revision: 87949

Log:
fix weirdly ambigious sentence

Modified:
   python/branches/py3k/Doc/howto/sorting.rst

Modified: python/branches/py3k/Doc/howto/sorting.rst
==============================================================================
--- python/branches/py3k/Doc/howto/sorting.rst	(original)
+++ python/branches/py3k/Doc/howto/sorting.rst	Wed Jan 12 05:44:41 2011
@@ -8,8 +8,8 @@
 
 
 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.
 


More information about the Python-checkins mailing list