From 2049e3b85c337d077e94c7e0da133cc15a5d4419 Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Fri, 13 Jan 2023 10:57:52 +0800 Subject: [PATCH] doc: fix configuration typo for `venv.in_project` (#1617) --- docs/docs/usage/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/usage/configuration.md b/docs/docs/usage/configuration.md index 2fc828c81b..ef3e9cadee 100644 --- a/docs/docs/usage/configuration.md +++ b/docs/docs/usage/configuration.md @@ -60,7 +60,7 @@ The following configuration items can be retrieved and modified by [`pdm config` | `venv.location` | Parent directory for virtualenvs | `/venvs` | No | | | `venv.backend` | Default backend to create virtualenv | `virtualenv` | Yes | `PDM_VENV_BACKEND` | | `venv.prompt` | Formatted string to be displayed in the prompt when virtualenv is active | `{project_name}-{python_version}` | Yes | `PDM_VENV_PROMPT` | -| `venv.in-project` | Create virtualenv in `.venv` under project root | `False` | Yes | `PDM_VENV_IN_PROJECT` | +| `venv.in_project` | Create virtualenv in `.venv` under project root | `False` | Yes | `PDM_VENV_IN_PROJECT` | | `venv.with_pip` | Install pip when creating a new venv | `False` | Yes | `PDM_VENV_WITH_PIP` | _If the corresponding env var is set, the value will take precedence over what is saved in the config file._