From 1422e18674015cf9ced495e913b41a40d0835746 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 5 Sep 2024 20:18:39 -0500 Subject: [PATCH] Fixup comment for `export --output-file` (#7111) --- 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 2f03c1c91..fc0cb5bf7 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -2966,7 +2966,7 @@ pub struct ExportArgs { #[arg(long, overrides_with("hashes"))] pub no_hashes: bool, - /// Write the compiled requirements to the given `requirements.txt` file. + /// Write the exported requirements to the given file. #[arg(long, short)] pub output_file: Option, diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 8783a21bf..0c8ee71f2 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -1885,7 +1885,7 @@ uv export [OPTIONS]

When disabled, uv will only use locally cached data and locally available files.

-
--output-file, -o output-file

Write the compiled requirements to the given requirements.txt file

+
--output-file, -o output-file

Write the exported requirements to the given file

--package package

Export the dependencies for a specific package in the workspace.