summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@users.noreply.github.com>2022-08-07 21:40:24 +0200
committerGitHub <noreply@github.com>2022-08-07 20:40:24 +0100
commit23023e991ab3aa2b7a304aa53511460c7f1b67b6 (patch)
tree602a90307ace5a328591370e19ab9f59ab941e17 /docs/src
parent5ddbe05d419d48161e5938e8de227d41913312ee (diff)
downloadcython-23023e991ab3aa2b7a304aa53511460c7f1b67b6.tar.gz
[Doc] Mention explicitely cython.NULL language basics (#4964)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/userguide/language_basics.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/userguide/language_basics.rst b/docs/src/userguide/language_basics.rst
index 7d056bdfb..a0450b785 100644
--- a/docs/src/userguide/language_basics.rst
+++ b/docs/src/userguide/language_basics.rst
@@ -1094,7 +1094,7 @@ direct equivalent in Python.
* There is an ``&`` operator in Cython, with the same semantics as in C.
In pure python mode, use the ``cython.address()`` function instead.
* The null C pointer is called ``NULL``, not ``0``. ``NULL`` is a reserved word in Cython
- and special object in pure python mode.
+ and ``cython.NULL`` is a special object in pure python mode.
* Type casts are written ``<type>value`` or ``cast(type, value)``, for example,
.. tabs::