summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2013-02-10 18:43:16 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2013-02-10 18:43:16 (GMT)
commitd80b16dbd5cc817c452df4a114134b63977551c4 (patch)
tree99b9589c167cba4538425e845f72008d1725c3f2
parent2306e6049bc1362bab69b472b6653203e372464b (diff)
downloadcpython-d80b16dbd5cc817c452df4a114134b63977551c4.zip
cpython-d80b16dbd5cc817c452df4a114134b63977551c4.tar.gz
cpython-d80b16dbd5cc817c452df4a114134b63977551c4.tar.bz2
Fix ReST role markup: :method: -> :meth:
-rw-r--r--Doc/library/socket.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
index 5a6bc1d..1797edd 100644
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -1350,7 +1350,7 @@ manager protocol instead, open a socket with::
socket.socket(socket.AF_CAN, socket.SOCK_DGRAM, socket.CAN_BCM)
After binding (:const:`CAN_RAW`) or connecting (:const:`CAN_BCM`) the socket, you
-can use the :method:`socket.send`, and the :method:`socket.recv` operations (and
+can use the :meth:`socket.send`, and the :meth:`socket.recv` operations (and
their counterparts) on the socket object as usual.
This example might require special priviledge::