From 4cf93fad6d4e8c094902c19fb4290c1fbd4a6e4a Mon Sep 17 00:00:00 2001 From: Nathan McDougall Date: Sat, 30 Nov 2024 07:53:38 +1300 Subject: [PATCH] Add missing word to docs for run.md --- docs/concepts/projects/run.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/projects/run.md b/docs/concepts/projects/run.md index 7da4b4a791758..4d0f1e53e185a 100644 --- a/docs/concepts/projects/run.md +++ b/docs/concepts/projects/run.md @@ -1,7 +1,7 @@ # Running commands in projects -When working on a project, it is installed into virtual environment at `.venv`. This environment is -isolated from the current shell by default, so invocations that require the project, e.g., +When working on a project, it is installed into the virtual environment at `.venv`. This environment +is isolated from the current shell by default, so invocations that require the project, e.g., `python -c "import example"`, will fail. Instead, use `uv run` to run commands in the project environment: