diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-01-12 04:44:41 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-01-12 04:44:41 (GMT) |
commit | 1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140 (patch) | |
tree | f99a451eb970a00f3d12e38b7f196e560c312730 /Doc/howto/sorting.rst | |
parent | e993b10041cd746e570c388ba13a7f0ee260a4c2 (diff) | |
download | cpython-1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140.zip cpython-1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140.tar.gz cpython-1efb8dc8719aaa2ddef1b4fcd2be1085b63ab140.tar.bz2 |
fix weirdly ambigious sentence
Diffstat (limited to 'Doc/howto/sorting.rst')
-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 134c9ce..3c8e7c2 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. |