docs: fix issues with the cython docs

pull/8859/head
Dylan Baker 4 years ago
parent ed19eb2443
commit a7357887c7
  1. 6
      docs/markdown/Cython.md
  2. 4
      docs/markdown/snippets/first-class-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',

@ -5,8 +5,8 @@ Meson now supports Cython as a first class language. This means you can write:
```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',

Loading…
Cancel
Save