]> granicus.if.org Git - python/commitdiff
Issue #15060: better fix, thanks to review on #python-dev
authorSandro Tosi <sandro.tosi@gmail.com>
Wed, 13 Jun 2012 22:36:54 +0000 (00:36 +0200)
committerSandro Tosi <sandro.tosi@gmail.com>
Wed, 13 Jun 2012 22:36:54 +0000 (00:36 +0200)
Doc/library/socket.rst

index 6d298be59aa11c5e1084efe06daa6b4d80e72bee..f9e5e0330c29a9258f7be19c45eefd32dddb691c 100644 (file)
@@ -38,7 +38,7 @@ Socket addresses are represented as follows: A single string is used for the
 :const:`AF_UNIX` address family. A pair ``(host, port)`` is used for the
 :const:`AF_INET` address family, where *host* is a string representing either a
 hostname in Internet domain notation like ``'daring.cwi.nl'`` or an IPv4 address
-like ``'100.50.200.5'``, and *port* is an integer port number. For
+like ``'100.50.200.5'``, and *port* is an integer. For
 :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo,
 scopeid)`` is used, where *flowinfo* and *scopeid* represents ``sin6_flowinfo``
 and ``sin6_scope_id`` member in :const:`struct sockaddr_in6` in C. For