From f210db090717c850b2f3d156f1f3c233ebfa3554 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 21 Aug 2025 16:12:06 -0500 Subject: [PATCH] Fix format doc mistake (#15433) --- 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 2bc1e13d4..3999e5144 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -1015,7 +1015,7 @@ pub enum ProjectCommand { /// To check if files are formatted without modifying them, use `--check`. To see a diff of /// formatting changes, use `--diff`. /// - /// By default, Additional arguments can be passed to Ruff after `--`. + /// Additional arguments can be passed to Ruff after `--`. #[command( after_help = "Use `uv help format` for more details.", after_long_help = "" diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 8b6ea73dd..148cdebb4 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -1850,7 +1850,7 @@ Formats Python code using the Ruff formatter. By default, all Python files in th To check if files are formatted without modifying them, use `--check`. To see a diff of formatting changes, use `--diff`. -By default, Additional arguments can be passed to Ruff after `--`. +Additional arguments can be passed to Ruff after `--`.

Usage