[Python-checkins] asyncio docs: Fix dangling hyphen (#102227)

JelleZijlstra webhook-mailer at python.org
Sat Feb 25 08:21:38 EST 2023


https://github.com/python/cpython/commit/207e1c5cae11108213dff5ff07443ee4cfa0d2ea
commit: 207e1c5cae11108213dff5ff07443ee4cfa0d2ea
branch: main
author: Jelle Zijlstra <jelle.zijlstra at gmail.com>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2023-02-25T05:21:32-08:00
summary:

asyncio docs: Fix dangling hyphen (#102227)

Currently this gets rendered with a dangling hyphen.

files:
M Doc/library/asyncio-eventloop.rst

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index f86e78428802..5138afc2bbe4 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -524,8 +524,8 @@ Opening network connections
       When a server's IPv4 path and protocol are working, but the server's
       IPv6 path and protocol are not working, a dual-stack client
       application experiences significant connection delay compared to an
-      IPv4-only client.  This is undesirable because it causes the dual-
-      stack client to have a worse user experience.  This document
+      IPv4-only client.  This is undesirable because it causes the
+      dual-stack client to have a worse user experience.  This document
       specifies requirements for algorithms that reduce this user-visible
       delay and provides an algorithm.
 



More information about the Python-checkins mailing list