diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-18 14:22:08 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-18 14:22:08 (GMT) |
commit | b10089edbac3ab301f5b974cd7bb6a878bbb0bf0 (patch) | |
tree | 156619aa25dfb464426c2a7879e383018db21db8 /Doc/library/functools.rst | |
parent | 29bd840dee45c7690bf2d4384fbf00e513f89b38 (diff) | |
download | cpython-b10089edbac3ab301f5b974cd7bb6a878bbb0bf0.zip cpython-b10089edbac3ab301f5b974cd7bb6a878bbb0bf0.tar.gz cpython-b10089edbac3ab301f5b974cd7bb6a878bbb0bf0.tar.bz2 |
Remove spurious space that was breaking Vim’s reST highlighting.
Diffstat (limited to 'Doc/library/functools.rst')
-rw-r--r-- | Doc/library/functools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 58c2429..82238fd 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -20,7 +20,7 @@ function for the purposes of this module. The :mod:`functools` module defines the following functions: -.. function:: cmp_to_key(func) +.. function:: cmp_to_key(func) Transform an old-style comparison function to a key-function. Used with tools that accept key functions (such as :func:`sorted`, :func:`min`, |