Skip to content

Commit

Permalink
Adjust the docs for the pip CLI commands
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jun 21, 2024
1 parent dd45fce commit 1bcec47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/uv/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,19 +215,19 @@ pub(crate) struct PipNamespace {
pub(crate) enum PipCommand {
/// Compile a `requirements.in` file to a `requirements.txt` file.
Compile(PipCompileArgs),
/// Sync dependencies from a `requirements.txt` file.
/// Sync an environment with a `requirements.txt` file.
Sync(PipSyncArgs),
/// Install packages into the current environment.
/// Install packages into an environment.
Install(PipInstallArgs),
/// Uninstall packages from the current environment.
/// Uninstall packages from an environment.
Uninstall(PipUninstallArgs),
/// Enumerate the installed packages in the current environment.
/// Enumerate the installed packages in an environment.
Freeze(PipFreezeArgs),
/// Enumerate the installed packages in the current environment.
/// Enumerate the installed packages in an environment.
List(PipListArgs),
/// Show information about one or more installed packages.
Show(PipShowArgs),
/// Display the dependency tree.
/// Display the dependency tree for an environment.
Tree(PipTreeArgs),
/// Verify installed packages have compatible dependencies.
Check(PipCheckArgs),
Expand Down

0 comments on commit 1bcec47

Please sign in to comment.