diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 442188c31..ede53be98 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -2143,7 +2143,7 @@ pub struct RunArgs { #[arg(long, value_parser = parse_maybe_file_path)] pub with_requirements: Vec>, - /// Run the tool in an isolated virtual environment. + /// Run the command in an isolated virtual environment. /// /// Usually, the project environment is reused for performance. This option /// forces a fresh environment to be used for the project, enforcing strict diff --git a/docs/reference/cli.md b/docs/reference/cli.md index fd459be20..5474f3a1f 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -147,7 +147,7 @@ uv run [OPTIONS]

The index given by this flag is given lower priority than all other indexes specified via the --extra-index-url flag.

-
--isolated

Run the tool in an isolated virtual environment.

+
--isolated

Run the command in an isolated virtual environment.

Usually, the project environment is reused for performance. This option forces a fresh environment to be used for the project, enforcing strict isolation between dependencies and declaration of requirements.