aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Cython.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/Cython.md')
-rw-r--r--docs/markdown/Cython.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Cython.md b/docs/markdown/Cython.md
index 17302b3..be05271 100644
--- a/docs/markdown/Cython.md
+++ b/docs/markdown/Cython.md
@@ -1,7 +1,7 @@
---
title: Cython
short-description: Support for Cython in Meson
-...
+---
# Cython
@@ -22,8 +22,8 @@ extension_module method:
```meson
project('my project', 'cython')
-py = import('python')
-dep_py3 = py.dependency()
+py = import('python').find_installation()
+dep_py = py.dependency()
py.extension_module(
'foo',