Commit 2147a027 authored by Hans Moritz Günther's avatar Hans Moritz Günther

Tiny typo in tutorial/memory_allocation.rst

parent 4e65f8f1
...@@ -22,7 +22,7 @@ management in C. ...@@ -22,7 +22,7 @@ management in C.
Simple C values and structs (such as a local variable ``cdef double x``) are Simple C values and structs (such as a local variable ``cdef double x``) are
usually allocated on the stack and passed by value, but for larger and more usually allocated on the stack and passed by value, but for larger and more
complicated objects (e.g. a dynamically-sized list of doubles), the memory must complicated objects (e.g. a dynamically-sized list of doubles), the memory must
be manually requested and released. C provides the functions :c:func`malloc`, be manually requested and released. C provides the functions :c:func:`malloc`,
:c:func:`realloc`, and :c:func:`free` for this purpose, which can be imported :c:func:`realloc`, and :c:func:`free` for this purpose, which can be imported
in cython from ``clibc.stdlib``. Their signatures are: in cython from ``clibc.stdlib``. Their signatures are:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment