diff options
Diffstat (limited to 'Doc/library/socketserver.rst')
| -rw-r--r-- | Doc/library/socketserver.rst | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index b7ce818992..e24b4296bc 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -155,7 +155,7 @@ Server Objects  .. data:: address_family     The family of protocols to which the server's socket belongs. -   :const:`socket.AF_INET` and :const:`socket.AF_UNIX` are two possible values. +   Common examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`.  .. data:: RequestHandlerClass @@ -199,7 +199,7 @@ The server classes support the following class variables:  .. data:: socket_type     The type of socket used by the server; :const:`socket.SOCK_STREAM` and -   :const:`socket.SOCK_DGRAM` are two possible values. +   :const:`socket.SOCK_DGRAM` are two common values.  .. data:: timeout  | 
