diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-31 09:00:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 09:00:39 (GMT) |
commit | 1e8c18509eb15efb8e80971b9935d17e7bbeabf4 (patch) | |
tree | d5b2bd6c7377e16921320c25f171b48a27ead862 /Doc/howto | |
parent | 691196d1af6a7e9d218e3281a8f3385616b2ca86 (diff) | |
download | cpython-1e8c18509eb15efb8e80971b9935d17e7bbeabf4.zip cpython-1e8c18509eb15efb8e80971b9935d17e7bbeabf4.tar.gz cpython-1e8c18509eb15efb8e80971b9935d17e7bbeabf4.tar.bz2 |
[3.6] bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231). (GH-10254)
(cherry picked from commit 3f819ca138db6945ee4271bf13e42db9f9b3b1e4)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 9914f8d..af8c432 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -971,7 +971,7 @@ provided: The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler` classes are defined in the core logging package. The other handlers are -defined in a sub- module, :mod:`logging.handlers`. (There is also another +defined in a sub-module, :mod:`logging.handlers`. (There is also another sub-module, :mod:`logging.config`, for configuration functionality.) Logged messages are formatted for presentation through instances of the |