[Python-checkins] r65846 - in python/trunk: Doc/library/threading.rst Misc/NEWS

georg.brandl python-checkins at python.org
Tue Aug 19 01:09:50 CEST 2008


Author: georg.brandl
Date: Tue Aug 19 01:09:49 2008
New Revision: 65846

Log:
Fix grammar.


Modified:
   python/trunk/Doc/library/threading.rst
   python/trunk/Misc/NEWS

Modified: python/trunk/Doc/library/threading.rst
==============================================================================
--- python/trunk/Doc/library/threading.rst	(original)
+++ python/trunk/Doc/library/threading.rst	Tue Aug 19 01:09:49 2008
@@ -14,7 +14,7 @@
 
 .. note::
 
-   Some name ``camelCase`` names have been converted to their underscored
+   Some ``camelCase`` names have been converted to their underscored
    equivalents. Others have been replaced by properties.  Using the old methods
    in 2.6 will trigger a :exc:`DeprecationWarning` when Python is run with the
    :option:`-3` flag and a full :exc:`DeprecationWarning` in 3.0.  The old names

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Tue Aug 19 01:09:49 2008
@@ -669,8 +669,8 @@
 - The bundled OSX-specific copy of libbffi is now in sync with the version
   shipped with PyObjC 2.0 and includes support for x86_64 and ppc64 platforms.
 
-- The threading module gained alias for names that will be removed in the 3.x
-  series.
+- The threading module gained aliases for names that will be removed in the
+  3.x series.
 
 Build
 -----


More information about the Python-checkins mailing list