summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/howto/clinic.rst2
-rw-r--r--Doc/howto/logging-cookbook.rst2
-rw-r--r--Doc/library/collections.rst2
-rw-r--r--Doc/library/poplib.rst2
-rw-r--r--Doc/library/ssl.rst2
5 files changed, 5 insertions, 5 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst
index 4ff475f..7524c4a 100644
--- a/Doc/howto/clinic.rst
+++ b/Doc/howto/clinic.rst
@@ -1495,7 +1495,7 @@ preset configurations, as follows:
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
index e31b6c2..813bc0f 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1417,7 +1417,7 @@ works::
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
index 5a52c7a..3c4d175 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -333,7 +333,7 @@ counts, but the output will exclude results with counts of zero or less.
>>> 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/poplib.rst b/Doc/library/poplib.rst
index fee6298..8468f4c 100644
--- a/Doc/library/poplib.rst
+++ b/Doc/library/poplib.rst
@@ -197,7 +197,7 @@ An :class:`POP3` instance has the following methods:
.. method:: POP3.utf8()
- Try to switch to UTF-8 mode. Returns the server response if sucessful,
+ Try to switch to UTF-8 mode. Returns the server response if successful,
raises :class:`error_proto` if not. Specified in :RFC:`6856`.
.. versionadded:: 3.5
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 31b4658..4075134 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -1381,7 +1381,7 @@ to speed up repeated connections from the same clients.
.. 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