summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-21 20:33:12 (GMT)
committerGitHub <noreply@github.com>2020-10-21 20:33:12 (GMT)
commitba666747af83aa465ffa8b55efbbb7f992647e12 (patch)
tree6462a564dbc9939623c46106a195de5b83c2a080
parent89fac4c3748aa7eb23d09922331e90a62ce782fd (diff)
downloadcpython-ba666747af83aa465ffa8b55efbbb7f992647e12.zip
cpython-ba666747af83aa465ffa8b55efbbb7f992647e12.tar.gz
cpython-ba666747af83aa465ffa8b55efbbb7f992647e12.tar.bz2
[3.8] bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22580) (GH-22866)
While translating the following document to Spanish we found there is a grammar issue on the original documentation. (cherry picked from commit caff2934f46510920a6169e192707d59e9c55f6b) Co-authored-by: Raúl Cumplido <raulcumplido@gmail.com>
-rw-r--r--Doc/library/asyncio-policy.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst
index aa8f8f1..2e153d6 100644
--- a/Doc/library/asyncio-policy.rst
+++ b/Doc/library/asyncio-policy.rst
@@ -219,7 +219,7 @@ implementation used by the asyncio event loop:
This implementation registers a :py:data:`SIGCHLD` signal handler on
instantiation. That can break third-party code that installs a custom handler for
- `SIGCHLD`. signal).
+ :py:data:`SIGCHLD` signal.
The watcher avoids disrupting other code spawning processes
by polling every process explicitly on a :py:data:`SIGCHLD` signal.