From 02189e8a30d91d6754e44cebced29e6a173e5ccf Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 6 Jul 2013 07:30:27 +0200 Subject: [PATCH] rst fix --- docs/src/quickstart/cythonize.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/quickstart/cythonize.rst b/docs/src/quickstart/cythonize.rst index 72270b0..efe985c 100644 --- a/docs/src/quickstart/cythonize.rst +++ b/docs/src/quickstart/cythonize.rst @@ -95,7 +95,7 @@ within the function call. A side-effect of cdef is that the function is no longer available from Python-space, as Python wouldn't know how to call it. It is also no -longer possible to change ``f` at runtime. +longer possible to change :func:`f` at runtime. Using the ``cpdef`` keyword instead of ``cdef``, a Python wrapper is also created, so that the function is available both from Cython (fast, passing -- 2.7.4