From a608e56beba7eb1b3335e824ba2f1fe8453f0979 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Wed, 30 Oct 2024 12:57:41 +0800 Subject: [PATCH] Correct typo in example Python module option python.install_env is the correct command, as documented in https://mesonbuild.com/Builtin-options.html#python-module. python.install_venv causes an error, it is not immediately obvious that the slight typo is the cause. --- docs/markdown/Python-module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/markdown/Python-module.md b/docs/markdown/Python-module.md index f3ee9ffc5..cd2a641d9 100644 --- a/docs/markdown/Python-module.md +++ b/docs/markdown/Python-module.md @@ -18,7 +18,7 @@ compatible with [PEP-517](https://peps.python.org/pep-0517/), check out If you are building Python extension modules against a Python interpreter located in a venv or Conda environment, you probably want to set -`python.install_venv=auto`; +`python.install_env=auto`; see [Python module options](Builtin-options.md#python-module) for details. *Added 0.46.0*