From d80b16dbd5cc817c452df4a114134b63977551c4 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 10 Feb 2013 18:43:16 +0000 Subject: [PATCH] Fix ReST role markup: :method: -> :meth: --- Doc/library/socket.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 5a6bc1ddb8..1797edd072 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:: -- 2.40.0