summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-08 13:48:10 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-08 13:48:10 (GMT)
commitf0564164bab43f078c9f84f334d72ddb0e69110c (patch)
treec932a0e51179ab15c414b95f280815f0901ac71a /Doc/howto
parent129fe04d4deec15f9ca0ee79776e0c4335fc12e7 (diff)
downloadcpython-f0564164bab43f078c9f84f334d72ddb0e69110c.zip
cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.gz
cpython-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.bz2
Fix typos in comments, documentation and test method names
Diffstat (limited to 'Doc/howto')
-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 57b4333..e784acc 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -2231,7 +2231,7 @@ flushing behavior.
The example script has a simple function, ``foo``, which just cycles through
all the logging levels, writing to ``sys.stderr`` to say what level it's about
-to log at, and then actually logging a message that that level. You can pass a
+to log at, and then actually logging a message at that level. You can pass a
parameter to ``foo`` which, if true, will log at ERROR and CRITICAL levels -
otherwise, it only logs at DEBUG, INFO and WARNING levels.