summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2013-11-15 20:54:15 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2013-11-15 20:54:15 (GMT)
commit6afafc7ea4b0f73cf99fe16936a65b83d3e7ebb4 (patch)
tree5c7f76bb345d0ef18365ff0411cc10da24236d9d
parent47fe4684ff61a8ea5cc77147fe9409a8d612bfb6 (diff)
downloadcpython-6afafc7ea4b0f73cf99fe16936a65b83d3e7ebb4.zip
cpython-6afafc7ea4b0f73cf99fe16936a65b83d3e7ebb4.tar.gz
cpython-6afafc7ea4b0f73cf99fe16936a65b83d3e7ebb4.tar.bz2
Issue #19504: Used American spelling for 'customize'.
-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 9045acf..f3fda14 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -727,8 +727,8 @@ functions.
Return either the standard :class:`Logger` class, or the last class passed to
:func:`setLoggerClass`. This function may be called from within a new class
- definition, to ensure that installing a customised :class:`Logger` class will
- not undo customisations already applied by other code. For example::
+ definition, to ensure that installing a customized :class:`Logger` class will
+ not undo customizations already applied by other code. For example::
class MyLogger(logging.getLoggerClass()):
# ... override behaviour here