[Python-checkins] cpython: Fix ReST role markup: :method: -> :meth:

mark.dickinson python-checkins at python.org
Sun Feb 10 19:43:33 CET 2013


http://hg.python.org/cpython/rev/44817c9e8ef7
changeset:   82144:44817c9e8ef7
user:        Mark Dickinson <dickinsm at gmail.com>
date:        Sun Feb 10 18:43:16 2013 +0000
summary:
  Fix ReST role markup: :method: -> :meth:

files:
  Doc/library/socket.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst
--- a/Doc/library/socket.rst
+++ b/Doc/library/socket.rst
@@ -1350,7 +1350,7 @@
     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::

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list