summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2014-06-25 06:30:46 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2014-06-25 06:30:46 (GMT)
commitab960f838c71bcdedddf26de48c5c911051e8ada (patch)
treec55ac3e21e53a1bb20d2a9da20ff3837c25322b7 /Doc
parent97d3555029b02fa4b432c1a1259b64aaa31e4e3e (diff)
downloadcpython-ab960f838c71bcdedddf26de48c5c911051e8ada.zip
cpython-ab960f838c71bcdedddf26de48c5c911051e8ada.tar.gz
cpython-ab960f838c71bcdedddf26de48c5c911051e8ada.tar.bz2
Fixed typo in documentation.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/logging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst
index 0387bea..4ce14f9 100644
--- a/Doc/howto/logging.rst
+++ b/Doc/howto/logging.rst
@@ -1027,7 +1027,7 @@ You can write code like this::
so that if the logger's threshold is set above ``DEBUG``, the calls to
:func:`expensive_func1` and :func:`expensive_func2` are never made.
-.. note:: In some cases, :meth:`~Logger.isEnabledFor` can iself be more
+.. note:: In some cases, :meth:`~Logger.isEnabledFor` can itself be more
expensive than you'd like (e.g. for deeply nested loggers where an explicit
level is only set high up in the logger hierarchy). In such cases (or if you
want to avoid calling a method in tight loops), you can cache the result of a