Commit 543ebf74 authored by gabrieldemarmiesse's avatar gabrieldemarmiesse

Fixed typos

parent 16768cfd
......@@ -77,8 +77,8 @@ containers.
Pointer types are constructed as in C, by appending a ``*`` to the base type
they point to, e.g. ``int**`` for a pointer to a pointer to a C int.
Arrays use the normal C array syntax, e.g. ``int[10]``, and the size must be known at
at compile time for stack allocated arrays. Cython doesn't support variable lenght arrays from C99.
Arrays use the normal C array syntax, e.g. ``int[10]``, and the size must be known
at compile time for stack allocated arrays. Cython doesn't support variable length arrays from C99.
Note that Cython uses array access for pointer dereferencing, as ``*x`` is not valid Python syntax,
whereas ``x[0]`` is.
......
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