From e2da86ae09f391ed337c382f9be264c16246b6fe Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 17 Jan 2025 12:54:14 -0600 Subject: [PATCH] Fix typo (#10720) --- crates/uv-cli/src/lib.rs | 6 +++--- docs/reference/cli.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 9ac08dd5a82d..6ff408ea19b0 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -1185,7 +1185,7 @@ pub struct PipCompileArgs { /// its CPU, vendor, and operating system name, like `x86_64-unknown-linux-gnu` or /// `aarch64-apple-darwin`. /// - /// When targetting macOS (Darwin), the default minimum version is `12.0`. Use + /// When targeting macOS (Darwin), the default minimum version is `12.0`. Use /// `MACOSX_DEPLOYMENT_TARGET` to specify a different minimum version, e.g., `13.0`. #[arg(long)] pub python_platform: Option, @@ -1475,7 +1475,7 @@ pub struct PipSyncArgs { /// its CPU, vendor, and operating system name, like `x86_64-unknown-linux-gnu` or /// `aarch64-apple-darwin`. /// - /// When targetting macOS (Darwin), the default minimum version is `12.0`. Use + /// When targeting macOS (Darwin), the default minimum version is `12.0`. Use /// `MACOSX_DEPLOYMENT_TARGET` to specify a different minimum version, e.g., `13.0`. /// /// WARNING: When specified, uv will select wheels that are compatible with the _target_ @@ -1757,7 +1757,7 @@ pub struct PipInstallArgs { /// its CPU, vendor, and operating system name, like `x86_64-unknown-linux-gnu` or /// `aarch64-apple-darwin`. /// - /// When targetting macOS (Darwin), the default minimum version is `12.0`. Use + /// When targeting macOS (Darwin), the default minimum version is `12.0`. Use /// `MACOSX_DEPLOYMENT_TARGET` to specify a different minimum version, e.g., `13.0`. /// /// WARNING: When specified, uv will select wheels that are compatible with the _target_ diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 8df1ee9c9859..5a81bdcf6b68 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -5782,7 +5782,7 @@ uv pip compile [OPTIONS] ...

Represented as a "target triple", a string that describes the target platform in terms of its CPU, vendor, and operating system name, like x86_64-unknown-linux-gnu or aarch64-apple-darwin.

-

When targetting macOS (Darwin), the default minimum version is 12.0. Use MACOSX_DEPLOYMENT_TARGET to specify a different minimum version, e.g., 13.0.

+

When targeting macOS (Darwin), the default minimum version is 12.0. Use MACOSX_DEPLOYMENT_TARGET to specify a different minimum version, e.g., 13.0.

Possible values:

@@ -6187,7 +6187,7 @@ uv pip sync [OPTIONS] ...

Represented as a "target triple", a string that describes the target platform in terms of its CPU, vendor, and operating system name, like x86_64-unknown-linux-gnu or aarch64-apple-darwin.

-

When targetting macOS (Darwin), the default minimum version is 12.0. Use MACOSX_DEPLOYMENT_TARGET to specify a different minimum version, e.g., 13.0.

+

When targeting macOS (Darwin), the default minimum version is 12.0. Use MACOSX_DEPLOYMENT_TARGET to specify a different minimum version, e.g., 13.0.

WARNING: When specified, uv will select wheels that are compatible with the target platform; as a result, the installed distributions may not be compatible with the current platform. Conversely, any distributions that are built from source may be incompatible with the target platform, as they will be built for the current platform. The --python-platform option is intended for advanced use cases.

@@ -6647,7 +6647,7 @@ uv pip install [OPTIONS] |--editable Represented as a "target triple", a string that describes the target platform in terms of its CPU, vendor, and operating system name, like x86_64-unknown-linux-gnu or aarch64-apple-darwin.

-

When targetting macOS (Darwin), the default minimum version is 12.0. Use MACOSX_DEPLOYMENT_TARGET to specify a different minimum version, e.g., 13.0.

+

When targeting macOS (Darwin), the default minimum version is 12.0. Use MACOSX_DEPLOYMENT_TARGET to specify a different minimum version, e.g., 13.0.

WARNING: When specified, uv will select wheels that are compatible with the target platform; as a result, the installed distributions may not be compatible with the current platform. Conversely, any distributions that are built from source may be incompatible with the target platform, as they will be built for the current platform. The --python-platform option is intended for advanced use cases.