https://github.com/python/cpython/commit/8c3fd1f245fbdc747966daedfd22ed48491309dc
commit: 8c3fd1f245fbdc747966daedfd22ed48491309dc
branch: main
author: Alexander Stepchenko <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2024-12-03T12:22:12+05:30
summary:

docs(logging): fix phrasing from "operation on" to "operate on" (#127543)

files:
M Doc/howto/logging.rst

diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst
index 3182d5664ab6ec..2982cf88bf97b4 100644
--- a/Doc/howto/logging.rst
+++ b/Doc/howto/logging.rst
@@ -127,7 +127,7 @@ that; formatting options will also be explained later.
 
 Notice that in this example, we use functions directly on the ``logging``
 module, like ``logging.debug``, rather than creating a logger and calling
-functions on it. These functions operation on the root logger, but can be 
useful
+functions on it. These functions operate on the root logger, but can be useful
 as they will call :func:`~logging.basicConfig` for you if it has not been 
called yet, like in
 this example.  In larger programs you'll usually want to control the logging
 configuration explicitly however - so for that reason as well as others, it's

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to