fix missing bracket

This commit is contained in:
Benjamin Peterson 2008-12-14 17:26:04 +00:00
parent bbba3f0cec
commit 3e1c67e866
1 changed files with 1 additions and 1 deletions

View File

@ -728,7 +728,7 @@ indexes at which certain conditions are met::
if line.strip() == '':
print 'Blank line at line #%i' % i
``sorted(iterable, [cmp=None], [key=None], [reverse=False)`` collects all the
``sorted(iterable, [cmp=None], [key=None], [reverse=False])`` collects all the
elements of the iterable into a list, sorts the list, and returns the sorted
result. The ``cmp``, ``key``, and ``reverse`` arguments are passed through to
the constructed list's ``.sort()`` method. ::