summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-04-07 09:40:52 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-04-07 09:40:52 (GMT)
commit497256ba18f4dae8da194b31326d256aab912931 (patch)
tree75147112a59bed612d29da0fd8c096b5b373973d /Doc
parentef7590e943df2e2bc11d422c1f995929c019385c (diff)
downloadcpython-497256ba18f4dae8da194b31326d256aab912931.zip
cpython-497256ba18f4dae8da194b31326d256aab912931.tar.gz
cpython-497256ba18f4dae8da194b31326d256aab912931.tar.bz2
Issue #8331: logging: fixed some grammatical errors in documentation.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/logging.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index ac58431..14f387f 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -246,7 +246,7 @@ With the logger object configured, the following methods create log messages:
methods listed above, but this is how to log at custom log levels.
:func:`getLogger` returns a reference to a logger instance with the specified
-if it it is provided, or ``root`` if not. The names are period-separated
+if it is provided, or ``root`` if not. The names are period-separated
hierarchical structures. Multiple calls to :func:`getLogger` with the same name
will return a reference to the same logger object. Loggers that are further
down in the hierarchical list are children of loggers higher up in the list.
@@ -291,7 +291,7 @@ custom handlers) are the following configuration methods:
Application code should not directly instantiate and use instances of
:class:`Handler`. Instead, the :class:`Handler` class is a base class that
-defines the interface that all Handlers should have and establishes some
+defines the interface that all handlers should have and establishes some
default behavior that child classes can use (or override).