summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-10-05 20:14:22 (GMT)
committerGitHub <noreply@github.com>2023-10-05 20:14:22 (GMT)
commit93279cc8b88ea9964fc5f82e30e754ee223d6453 (patch)
treea9abdaa666e56f05a636947f74bc3d03ef4eadf4
parent11137d38222f7874c8cbffe91bd656983288a9b0 (diff)
downloadcpython-93279cc8b88ea9964fc5f82e30e754ee223d6453.zip
cpython-93279cc8b88ea9964fc5f82e30e754ee223d6453.tar.gz
cpython-93279cc8b88ea9964fc5f82e30e754ee223d6453.tar.bz2
[3.12] gh-110383: Swap 'the all' -> 'all the' in socket docs (GH-110434) (#110435)
Co-authored-by: Bradley Reynolds <bradley.reynolds@darbia.dev>
-rw-r--r--Doc/library/socket.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index 83957c8..7fb47ce 100644
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -2100,7 +2100,7 @@ The next two examples are identical to the above two, but support both IPv4 and
IPv6. The server side will listen to the first address family available (it
should listen to both instead). On most of IPv6-ready systems, IPv6 will take
precedence and the server may not accept IPv4 traffic. The client side will try
-to connect to the all addresses returned as a result of the name resolution, and
+to connect to all the addresses returned as a result of the name resolution, and
sends traffic to the first one connected successfully. ::
# Echo server program