[Python-checkins] r79888 - python/trunk/Doc/library/logging.rst

vinay.sajip python-checkins at python.org
Wed Apr 7 11:40:52 CEST 2010


Author: vinay.sajip
Date: Wed Apr  7 11:40:52 2010
New Revision: 79888

Log:
Issue #8331: logging: fixed some grammatical errors in documentation.

Modified:
   python/trunk/Doc/library/logging.rst

Modified: python/trunk/Doc/library/logging.rst
==============================================================================
--- python/trunk/Doc/library/logging.rst	(original)
+++ python/trunk/Doc/library/logging.rst	Wed Apr  7 11:40:52 2010
@@ -246,7 +246,7 @@
   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 @@
 
 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).
 
 


More information about the Python-checkins mailing list