Adjust the docs for the pip CLI commands (#4445)

This commit is contained in:
Zanie Blue 2024-06-23 12:03:49 -04:00 committed by GitHub
parent 03e2e6b99a
commit d4f2a8a52f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -215,19 +215,19 @@ pub(crate) struct PipNamespace {
pub(crate) enum PipCommand { pub(crate) enum PipCommand {
/// Compile a `requirements.in` file to a `requirements.txt` file. /// Compile a `requirements.in` file to a `requirements.txt` file.
Compile(PipCompileArgs), Compile(PipCompileArgs),
/// Sync dependencies from a `requirements.txt` file. /// Sync an environment with a `requirements.txt` file.
Sync(PipSyncArgs), Sync(PipSyncArgs),
/// Install packages into the current environment. /// Install packages into an environment.
Install(PipInstallArgs), Install(PipInstallArgs),
/// Uninstall packages from the current environment. /// Uninstall packages from an environment.
Uninstall(PipUninstallArgs), Uninstall(PipUninstallArgs),
/// Enumerate the installed packages in the current environment. /// Enumerate the installed packages in an environment.
Freeze(PipFreezeArgs), Freeze(PipFreezeArgs),
/// Enumerate the installed packages in the current environment. /// Enumerate the installed packages in an environment.
List(PipListArgs), List(PipListArgs),
/// Show information about one or more installed packages. /// Show information about one or more installed packages.
Show(PipShowArgs), Show(PipShowArgs),
/// Display the dependency tree. /// Display the dependency tree for an environment.
Tree(PipTreeArgs), Tree(PipTreeArgs),
/// Verify installed packages have compatible dependencies. /// Verify installed packages have compatible dependencies.
Check(PipCheckArgs), Check(PipCheckArgs),