diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-01-12 04:51:02 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-01-12 04:51:02 (GMT) |
commit | 6e1d0a829ddd4db0b099878f820d36f5e32a0f03 (patch) | |
tree | 9deed992220d81aa1521c5918812078ba922ceab /Doc/howto | |
parent | 7be05b221d5c20ab4a78993d54a37247c6b33d7b (diff) | |
download | cpython-6e1d0a829ddd4db0b099878f820d36f5e32a0f03.zip cpython-6e1d0a829ddd4db0b099878f820d36f5e32a0f03.tar.gz cpython-6e1d0a829ddd4db0b099878f820d36f5e32a0f03.tar.bz2 |
Merged revisions 87949 via svnmerge from
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
........
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/sorting.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/sorting.rst b/Doc/howto/sorting.rst index 31a601f..351713f 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. |