diff options
author | Ned Deily <nad@acm.org> | 2015-06-02 02:17:44 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-06-02 02:17:44 (GMT) |
commit | 9e2dc3f0b1034d04bc6ce45a95969c2462640bde (patch) | |
tree | e9b90828ce6eb4a1006a0db41c68a71305d6daf0 | |
parent | 1b79e2d7eec86c67defdb40015c29d7cd25273c8 (diff) | |
download | cpython-9e2dc3f0b1034d04bc6ce45a95969c2462640bde.zip cpython-9e2dc3f0b1034d04bc6ce45a95969c2462640bde.tar.gz cpython-9e2dc3f0b1034d04bc6ce45a95969c2462640bde.tar.bz2 |
Issue #24357: fix typo
-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 1a35c97..c260e87 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -461,7 +461,7 @@ The :mod:`socket` module also offers various network-related services: method. The following example fetches address information for a hypothetical TCP - connection to ``google.com` on port 80 (results may differ on your + connection to `google.com` on port 80 (results may differ on your system if IPv6 isn't enabled):: >>> socket.getaddrinfo("google.com", 80, proto=socket.IPPROTO_TCP) |