diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-05-18 22:36:55 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-05-18 22:36:55 (GMT) |
commit | 315e104d11c36b9f4de0a125d639e834e06ed3e6 (patch) | |
tree | ad8f2e022087ca535ed1337acb650f654af801e5 /Doc/howto | |
parent | 2a8baed833f70f074252e72b9062b76b35cc422f (diff) | |
download | cpython-315e104d11c36b9f4de0a125d639e834e06ed3e6.zip cpython-315e104d11c36b9f4de0a125d639e834e06ed3e6.tar.gz cpython-315e104d11c36b9f4de0a125d639e834e06ed3e6.tar.bz2 |
Issue #24232: Fix typos. Patch by Ville Skyttä.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/clinic.rst | 2 | ||||
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst index 750ddbe..0b7cada 100644 --- a/Doc/howto/clinic.rst +++ b/Doc/howto/clinic.rst @@ -1498,7 +1498,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 114ec09..6305d24 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1408,7 +1408,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, |