]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-110383: Swap 'the all' -> 'all the' in socket docs (GH-110434) (#110436)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 5 Oct 2023 20:14:32 +0000 (13:14 -0700)
committerGitHub <noreply@github.com>
Thu, 5 Oct 2023 20:14:32 +0000 (14:14 -0600)
Co-authored-by: Bradley Reynolds <bradley.reynolds@darbia.dev>
Doc/library/socket.rst

index 36151ca650e52edf1d60f00f6b9f2d427787fdc8..32afacbbd231a7b6c8729938e5bed55957af5c79 100644 (file)
@@ -2001,7 +2001,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