diff options
author | Georg Brandl <georg@python.org> | 2012-01-23 19:19:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-01-23 19:19:33 (GMT) |
commit | 3b65fd7e9784967567e66bd67e9205cbb0d53d3a (patch) | |
tree | 69a5844aa65d50fd947ef96dc1c32abb29e80980 /Doc | |
parent | beca27a394d4e3988a4c08e670a5b42f1e7eb4a0 (diff) | |
download | cpython-3b65fd7e9784967567e66bd67e9205cbb0d53d3a.zip cpython-3b65fd7e9784967567e66bd67e9205cbb0d53d3a.tar.gz cpython-3b65fd7e9784967567e66bd67e9205cbb0d53d3a.tar.bz2 |
#13816: fix two minor style issues. Thanks to Justin Wehnes for the patch.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functools.rst | 2 | ||||
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 7d44979..737cdd3 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -20,7 +20,7 @@ The :mod:`functools` module defines the following functions: .. function:: cmp_to_key(func) - Transform an old-style comparison function to a key-function. Used with + Transform an old-style comparison function to a key function. Used with tools that accept key functions (such as :func:`sorted`, :func:`min`, :func:`max`, :func:`heapq.nlargest`, :func:`heapq.nsmallest`, :func:`itertools.groupby`). This function is primarily used as a transition diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 9e08c65..d32bf87 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -873,7 +873,7 @@ are sequences of the same type; *n*, *i*, *j* and *k* are integers. | ``s * n, n * s`` | *n* shallow copies of *s* | \(2) | | | concatenated | | +------------------+--------------------------------+----------+ -| ``s[i]`` | *i*'th item of *s*, origin 0 | \(3) | +| ``s[i]`` | *i*\ th item of *s*, origin 0 | \(3) | +------------------+--------------------------------+----------+ | ``s[i:j]`` | slice of *s* from *i* to *j* | (3)(4) | +------------------+--------------------------------+----------+ |