]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
docs(logging): fix phrasing from "operation on" to "operate on" (#127543)
authorAlexander Stepchenko <x.GeoCHiP.x@yandex.ru>
Tue, 3 Dec 2024 06:52:12 +0000 (09:52 +0300)
committerGitHub <noreply@github.com>
Tue, 3 Dec 2024 06:52:12 +0000 (12:22 +0530)
Doc/howto/logging.rst

index 3182d5664ab6ec1d48b4742933b30e1a5f679316..2982cf88bf97b4d382e6dc4632d0a5522b6f3841 100644 (file)
@@ -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