diff options
-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. |