summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-08-18 23:09:49 (GMT)
committerGeorg Brandl <georg@python.org>2008-08-18 23:09:49 (GMT)
commit25c3408556df0648753d3fe627d040917222b164 (patch)
treef70332de53a639fbf883c80c8f67130cdc36822e
parentfacdd6ee9e1b53fae37b9e097166997ba8f0b16f (diff)
downloadcpython-25c3408556df0648753d3fe627d040917222b164.zip
cpython-25c3408556df0648753d3fe627d040917222b164.tar.gz
cpython-25c3408556df0648753d3fe627d040917222b164.tar.bz2
Fix grammar.
-rw-r--r--Doc/library/threading.rst2
-rw-r--r--Misc/NEWS4
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index b6d6224..6841cea 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -14,7 +14,7 @@ The :mod:`dummy_threading` module is provided for situations where
.. 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
diff --git a/Misc/NEWS b/Misc/NEWS
index b179d40..e82772f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -669,8 +669,8 @@ Library
- 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
-----