diff options
author | Alexander Stepchenko <x.GeoCHiP.x@yandex.ru> | 2024-12-03 06:52:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-03 06:52:12 (GMT) |
commit | 8c3fd1f245fbdc747966daedfd22ed48491309dc (patch) | |
tree | f8ca0525044b89a09c662fd747b3c071dc652795 | |
parent | dffb90911a585a0921664c8b1c229d0883e65ee7 (diff) | |
download | cpython-8c3fd1f245fbdc747966daedfd22ed48491309dc.zip cpython-8c3fd1f245fbdc747966daedfd22ed48491309dc.tar.gz cpython-8c3fd1f245fbdc747966daedfd22ed48491309dc.tar.bz2 |
docs(logging): fix phrasing from "operation on" to "operate on" (#127543)
-rw-r--r-- | Doc/howto/logging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 3182d56..2982cf8 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 |