From e5c10cd45d00fc55ff300e48795ae8eb961431e7 Mon Sep 17 00:00:00 2001 From: Haaris Rahman <122410226+haarisr@users.noreply.github.com> Date: Thu, 6 Nov 2025 20:06:17 -0800 Subject: [PATCH] Fix typo in uv tool list doc (#16625) ## Summary Fixed a typo in the docs. Regenerated the docs, with the fix. --- crates/uv-cli/src/lib.rs | 2 +- docs/reference/cli.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index e41b2c192..5a3946b93 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -4969,7 +4969,7 @@ pub struct ToolListArgs { #[arg(long)] pub show_extras: bool, - /// Whether to display the Python version associated with run each tool. + /// Whether to display the Python version associated with each tool. #[arg(long)] pub show_python: bool, diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 9e72fda25..11ef15ebe 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -3049,7 +3049,7 @@ uv tool list [OPTIONS]
Repeating this option, e.g., -qq, will enable a silent mode in which uv will write no output to stdout.
--show-extrasWhether to display the extra requirements installed with each tool
--show-pathsWhether to display the path to each tool environment and installed executable
---show-pythonWhether to display the Python version associated with run each tool
+--show-pythonWhether to display the Python version associated with each tool
--show-version-specifiersWhether to display the version specifier(s) used to install each tool
--show-withWhether to display the additional requirements installed with each tool
--verbose, -vUse verbose output.