summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-02-26 13:28:20 (GMT)
committerGitHub <noreply@github.com>2023-02-26 13:28:20 (GMT)
commit4732f551e2b3b0c229269be48bfba7274e122f86 (patch)
tree8370ffc022d0d4616966b26ef81ce75f34af4fb4
parent5b610b59c75953aef4b523b833c7d6f2df963d90 (diff)
downloadcpython-4732f551e2b3b0c229269be48bfba7274e122f86.zip
cpython-4732f551e2b3b0c229269be48bfba7274e122f86.tar.gz
cpython-4732f551e2b3b0c229269be48bfba7274e122f86.tar.bz2
[3.10] [doc] Improve grammar/fix missing word (GH-102060) (GH-102278)
[doc] Improve grammar/fix missing word (GH-102060) (cherry picked from commit 6daf42b28e1c6d5f0c1a6350cfcc382789e11293) Co-authored-by: VMan <vayidm@users.noreply.github.com>
-rw-r--r--Doc/bugs.rst2
-rw-r--r--Doc/howto/logging-cookbook.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/bugs.rst b/Doc/bugs.rst
index 4f30ef1..d98192b 100644
--- a/Doc/bugs.rst
+++ b/Doc/bugs.rst
@@ -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
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 8b1e7e4..1272ea1 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.