Fix doc for uv add cli command s/remove/add/ (#4269)

## Summary

Fix the docsting where `remove` was used instead of `add` in the context
of `uv add` command.

## Test Plan

```
cargo run -- add --help
```
```
Add one or more packages to the project requirements

Usage: uv add [OPTIONS] <REQUIREMENTS>...

Arguments:
  <REQUIREMENTS>...
          The packages to add, as PEP 508 requirements (e.g., `flask==2.2.3`)

```
This commit is contained in:
Nicolas Delaby 2024-06-12 15:44:08 +02:00 committed by GitHub
parent 5e7b98d3e7
commit 5a09c26e77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1936,7 +1936,7 @@ pub(crate) struct LockArgs {
#[derive(Args)]
#[allow(clippy::struct_excessive_bools)]
pub(crate) struct AddArgs {
/// The packages to remove, as PEP 508 requirements (e.g., `flask==2.2.3`).
/// The packages to add, as PEP 508 requirements (e.g., `flask==2.2.3`).
#[arg(required = true)]
pub(crate) requirements: Vec<String>,