Fix typo in no-deps docs/comments/cli description (#11073)

## Summary
Fixes a recurring typo.

## Details
There's a typo appearing in a particular sentence...

> Ignore package dependencies, instead only add those packages
explicitly listed on the command line to the resulting **the**
requirements file.

... used in:
* `crates/uv-cli/src/lib.rs`
* `crates/uv-settings-src-settings.rs`
* `docs/reference/settings.md`
* `uv.schem.json`

Docs, comments and a CLI command description seem affected.

This PR fixes it.

---------

Co-authored-by: bujnok01 <bujnok01@heiway.net>
This commit is contained in:
titipoco 2025-01-29 18:55:40 +01:00 committed by GitHub
parent f6a15b79f7
commit 3af3af5039
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -1015,7 +1015,7 @@ pub struct PipCompileArgs {
pub refresh: RefreshArgs,
/// Ignore package dependencies, instead only add those packages explicitly listed
/// on the command line to the resulting the requirements file.
/// on the command line to the resulting requirements file.
#[arg(long)]
pub no_deps: bool,