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 title: Cython
short-description: Support for Cython in Meson short-description: Support for Cython in Meson
... ---
# Cython # Cython
@ -22,8 +22,8 @@ extension_module method:
```meson ```meson
project('my project', 'cython') project('my project', 'cython')
py = import('python') py = import('python').find_installation()
dep_py3 = py.dependency() dep_py = py.dependency()
py.extension_module( py.extension_module(
'foo', 'foo',

@ -5,8 +5,8 @@ Meson now supports Cython as a first class language. This means you can write:
```meson ```meson
project('my project', 'cython') project('my project', 'cython')
py = import('python') py = import('python').find_installation()
dep_py3 = py.dependency() dep_py = py.dependency()
py.extension_module( py.extension_module(
'foo', 'foo',

Loading…
Cancel
Save