Fix wrong markup.

This commit is contained in:
Georg Brandl 2009-12-29 11:25:38 +00:00
parent a25658b755
commit c2aad8ad15
1 changed files with 2 additions and 2 deletions

View 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()