diff -r 43d08528223c Doc/library/functools.rst --- a/Doc/library/functools.rst Thu Jan 12 08:06:49 2012 +0100 +++ b/Doc/library/functools.rst Mon Jan 23 12:06:16 2012 -0500 @@ -20,7 +20,7 @@ .. 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 -r 43d08528223c Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst Thu Jan 12 08:06:49 2012 +0100 +++ b/Doc/library/stdtypes.rst Mon Jan 23 12:06:16 2012 -0500 @@ -877,7 +877,7 @@ | ``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) | +------------------+--------------------------------+----------+