[Python-checkins] cpython (3.4): Issue #24232: Fix typos. Patch by Ville Skyttä.

berker.peksag python-checkins at python.org
Tue May 19 00:38:04 CEST 2015


https://hg.python.org/cpython/rev/fd7ef3972215
changeset:   96148:fd7ef3972215
branch:      3.4
parent:      96146:f6e7953b5431
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Tue May 19 01:36:55 2015 +0300
summary:
  Issue #24232: Fix typos. Patch by Ville Skyttä.

files:
  Doc/howto/clinic.rst           |  2 +-
  Doc/howto/logging-cookbook.rst |  2 +-
  Doc/library/collections.rst    |  2 +-
  Doc/library/ssl.rst            |  2 +-
  4 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst
--- a/Doc/howto/clinic.rst
+++ b/Doc/howto/clinic.rst
@@ -1498,7 +1498,7 @@
     the ``buffer`` preset.
 
     Suppresses the ``impl_prototype``, write the ``docstring_definition``
-    and ``parser_defintion`` to ``buffer``, write everything else to ``block``.
+    and ``parser_definition`` to ``buffer``, write everything else to ``block``.
 
 The third new directive is ``destination``::
 
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1408,7 +1408,7 @@
     def worker_process(config):
         """
         A number of these are spawned for the purpose of illustration. In
-        practice, they could be a heterogenous bunch of processes rather than
+        practice, they could be a heterogeneous bunch of processes rather than
         ones which are identical to each other.
 
         This initialises logging according to the specified configuration,
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -333,7 +333,7 @@
     >>> c | d                       # union:  max(c[x], d[x])
     Counter({'a': 3, 'b': 2})
 
-Unary addition and substraction are shortcuts for adding an empty counter
+Unary addition and subtraction are shortcuts for adding an empty counter
 or subtracting from an empty counter.
 
     >>> c = Counter(a=2, b=-4)
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -1269,7 +1269,7 @@
 
 .. attribute:: SSLContext.check_hostname
 
-   Wether to match the peer cert's hostname with :func:`match_hostname` in
+   Whether to match the peer cert's hostname with :func:`match_hostname` in
    :meth:`SSLSocket.do_handshake`. The context's
    :attr:`~SSLContext.verify_mode` must be set to :data:`CERT_OPTIONAL` or
    :data:`CERT_REQUIRED`, and you must pass *server_hostname* to

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list