diff options
author | Bradley Reynolds <bradley.reynolds@darbia.dev> | 2023-10-05 19:55:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 19:55:44 (GMT) |
commit | d257479c2f6cbf3b69ed90062f00635832e4bf91 (patch) | |
tree | d1ca8e5db2a1d9ef1b5b1113d01658ef8b1eac20 /Doc/library/socket.rst | |
parent | 3c2f3215cc81ec8470208176dd32d2aef84faa13 (diff) | |
download | cpython-d257479c2f6cbf3b69ed90062f00635832e4bf91.zip cpython-d257479c2f6cbf3b69ed90062f00635832e4bf91.tar.gz cpython-d257479c2f6cbf3b69ed90062f00635832e4bf91.tar.bz2 |
gh-110383: Swap 'the all' -> 'all the' in socket docs (#110434)
Diffstat (limited to 'Doc/library/socket.rst')
-rw-r--r-- | Doc/library/socket.rst | 2 |
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 |