]> granicus.if.org Git - python/commitdiff
Fix wrong markup.
authorGeorg Brandl <georg@python.org>
Tue, 29 Dec 2009 11:25:38 +0000 (11:25 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 29 Dec 2009 11:25:38 +0000 (11:25 +0000)
Doc/library/ctypes.rst

index 44416963c281a6aa1104a64bb8d1d4852d559c51..582300c28c4124933e7f1805cc6facc97257466e 100644 (file)
@@ -513,8 +513,8 @@ to be passed by value. This is also known as *passing parameters by reference*.
 
 :mod:`ctypes` exports the :func:`byref` function which is used to pass
 parameters by reference.  The same effect can be achieved with the
-:cfunc:`pointer` function, although :cfunc:`pointer` does a lot more work since
-it constructs a real pointer object, so it is faster to use :func:`byref` if you
+:func:`pointer` function, although :func:`pointer` does a lot more work since it
+constructs a real pointer object, so it is faster to use :func:`byref` if you
 don't need the pointer object in Python itself::
 
    >>> i = c_int()