]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.10] [doc] Improve grammar/fix missing word (GH-102060) (GH-102278)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 26 Feb 2023 13:28:20 +0000 (05:28 -0800)
committerGitHub <noreply@github.com>
Sun, 26 Feb 2023 13:28:20 +0000 (18:58 +0530)
[doc] Improve grammar/fix missing word (GH-102060)
(cherry picked from commit 6daf42b28e1c6d5f0c1a6350cfcc382789e11293)

Co-authored-by: VMan <vayidm@users.noreply.github.com>
Doc/bugs.rst
Doc/howto/logging-cookbook.rst

index 4f30ef19ee4d8a0cb62440a6b0de295eb14d9378..d98192b369603e97a6a38d4cc6c374e544b45853 100644 (file)
@@ -70,7 +70,7 @@ Click on the "New issue" button in the top bar to report a new issue.
 The submission form has two fields, "Title" and "Comment".
 
 For the "Title" field, enter a *very* short description of the problem;
-less than ten words is good.
+fewer than ten words is good.
 
 In the "Comment" field, describe the problem in detail, including what you
 expected to happen and what did happen.  Be sure to include whether any
index 8b1e7e48bff7ec6803e65d9a304e7a60b8e2fcf1..1272ea1e3998e8694201e5f111d7208daf23e22e 100644 (file)
@@ -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.