diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-02-26 13:28:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-26 13:28:55 (GMT) |
commit | 2c4fc87ac18414266ab62105a3cabb94a82a8640 (patch) | |
tree | a6d4536514ee5fdbe58f50b225d27a1a8c48cef8 /Doc/howto | |
parent | 626f471d88bb611a0bbb4966e09798b2cf81818d (diff) | |
download | cpython-2c4fc87ac18414266ab62105a3cabb94a82a8640.zip cpython-2c4fc87ac18414266ab62105a3cabb94a82a8640.tar.gz cpython-2c4fc87ac18414266ab62105a3cabb94a82a8640.tar.bz2 |
[3.11] [doc] Improve grammar/fix missing word (GH-102060) (GH-102277)
[doc] Improve grammar/fix missing word (GH-102060)
(cherry picked from commit 6daf42b28e1c6d5f0c1a6350cfcc382789e11293)
Co-authored-by: VMan <vayidm@users.noreply.github.com>
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 97e990d..e4338ab 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -2538,7 +2538,7 @@ should be logged, or the ``extra`` keyword parameter to indicate additional contextual information to be added to the log). So you cannot directly make logging calls using :meth:`str.format` or :class:`string.Template` syntax, because internally the logging package uses %-formatting to merge the format -string and the variable arguments. There would no changing this while preserving +string and the variable arguments. There would be no changing this while preserving backward compatibility, since all logging calls which are out there in existing code will be using %-format strings. |