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

This commit is contained in:
Alexander Stepchenko 2024-12-03 09:52:12 +03:00 committed by GitHub
parent dffb90911a
commit 8c3fd1f245
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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