From 0551144b3567de99eb8668284b37050e33df8eab Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 12 Jan 2011 04:47:43 +0000 Subject: [PATCH] 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 ........ --- Doc/howto/sorting.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/howto/sorting.rst b/Doc/howto/sorting.rst index dff1a47ade2..746e40c0bdf 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.