[Python-checkins] r87094 - python/branches/py3k/Doc/whatsnew/3.2.rst

raymond.hettinger python-checkins at python.org
Mon Dec 6 05:31:46 CET 2010


Author: raymond.hettinger
Date: Mon Dec  6 05:31:40 2010
New Revision: 87094

Log:
Typo fixups.


Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Mon Dec  6 05:31:40 2010
@@ -442,8 +442,8 @@
   in :issue:`2690`.)
 
 * The :func:`callable` builtin function from Py2.x was resurrected.  It provides
-  a concise, readable alternative to using an :term:`abstract base class` to in
-  an expression like ``isinstance(x, collections.Callable)``.
+  a concise, readable alternative to using an :term:`abstract base class` in an
+  expression like ``isinstance(x, collections.Callable)``.
 
   (See :issue:`10518`.)
 
@@ -478,7 +478,7 @@
   >>> get_phone_number.cache_clear()
 
   (Contributed by Raymond Hettinger and incorporating design ideas from
-  Jim Baker, Miki Tebeka, and Nick Coglan.)
+  Jim Baker, Miki Tebeka, and Nick Coghlan.)
 
 * The :func:`functools.wraps` decorator now adds a :attr:`__wrapped__` attribute
   pointing to the original callable function.  This allows wrapped functions to


More information about the Python-checkins mailing list