Commit c76e0c1e authored by da-woods's avatar da-woods Committed by GitHub

docs: repair glossary (GH-4238)

It looks like putting the title between `.. glossary::` and the entries messed it up.
parent bba69054
.. glossary::
Glossary
========
.. glossary::
Extension type
"Extension type" can refer to either a Cython class defined with ``cdef class`` or more generally to any Python type that is ultimately implemented as a native C struct (including the built-in types like `int` or `dict`).
......
......@@ -11,7 +11,7 @@ Overview
Cython has native support for most of the C++ language. Specifically:
* C++ objects can be :term:`dynamically allocated<Dynamic allocation>` with ``new`` and ``del`` keywords.
* C++ objects can be :term:`dynamically allocated<Dynamic allocation or Heap allocation>` with ``new`` and ``del`` keywords.
* C++ objects can be :term:`stack-allocated<Stack allocation>`.
* C++ classes can be declared with the new keyword ``cppclass``.
* Templated classes and functions are supported.
......
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