cpython (2.7): fix typo; thanks to Robert Bardos from docs@
http://hg.python.org/cpython/rev/3623c3e6c049 changeset: 76036:3623c3e6c049 branch: 2.7 parent: 76032:6f8dd543d80a user: Sandro Tosi <sandro.tosi@gmail.com> date: Sun Apr 01 01:49:46 2012 +0200 summary: fix typo; thanks to Robert Bardos from docs@ files: Doc/glossary.rst | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -406,7 +406,7 @@ :meth:`str.lower` method can serve as a key function for case insensitive sorts. Alternatively, an ad-hoc key function can be built from a :keyword:`lambda` expression such as ``lambda r: (r[0], r[2])``. Also, - the :mod:`operator` module provides three key function constuctors: + the :mod:`operator` module provides three key function constructors: :func:`~operator.attrgetter`, :func:`~operator.itemgetter`, and :func:`~operator.methodcaller`. See the :ref:`Sorting HOW TO <sortinghowto>` for examples of how to create and use key functions. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
sandro.tosi