From 81ea3d1b3a43155f1c7f9cfa749cccc477816f66 Mon Sep 17 00:00:00 2001 From: Charles Brunet Date: Thu, 13 Jul 2023 15:26:38 -0400 Subject: [PATCH] DOC: fix example for feature enabled --- docs/how-to-guides/meson-args.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to-guides/meson-args.rst b/docs/how-to-guides/meson-args.rst index b6e77361d..f074a4a2a 100644 --- a/docs/how-to-guides/meson-args.rst +++ b/docs/how-to-guides/meson-args.rst @@ -26,7 +26,7 @@ for the ``setup``, ``compile``, ``install``, and ``dist`` keys in the .. code-block:: toml [tool.meson-python.args] - setup = ['-Doption=false', '-Dfeature=enable', '-Dvalue=42'] + setup = ['-Doption=false', '-Dfeature=enabled', '-Dvalue=42'] compile = ['-j4'] install = ['--tags=bindings'] dist = ['--include-subprojects']