summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-03-20 10:51:16 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-03-20 10:51:16 (GMT)
commit5d7286c05d8138563ab136fb892b95f86b0368e9 (patch)
tree772228aec402146a728573c8a2a75f19335724a9 /Doc
parent02cce6921700051031f9b07adacd1605b84c57c1 (diff)
parent563c949b11100faef670df0978df3525a7c75285 (diff)
downloadcpython-5d7286c05d8138563ab136fb892b95f86b0368e9.zip
cpython-5d7286c05d8138563ab136fb892b95f86b0368e9.tar.gz
cpython-5d7286c05d8138563ab136fb892b95f86b0368e9.tar.bz2
Issue #26593: Fix typo in logging HOWTO
Patch by Andrew Szeto.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/logging-cookbook.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 582a034..64f4c54 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -98,7 +98,7 @@ Logging from multiple threads
-----------------------------
Logging from multiple threads requires no special effort. The following example
-shows logging from the main (initIal) thread and another thread::
+shows logging from the main (initial) thread and another thread::
import logging
import threading