From: Benjamin Peterson Date: Wed, 12 Jan 2011 04:44:41 +0000 (+0000) Subject: fix weirdly ambigious sentence X-Git-Tag: v3.2rc1~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140;p=thirdparty%2FPython%2Fcpython.git fix weirdly ambigious sentence --- diff --git a/Doc/howto/sorting.rst b/Doc/howto/sorting.rst index 134c9ce73692..3c8e7c2af9e8 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.