From d4f2a8a52f6c5aa7673484518ec44b950374e733 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Sun, 23 Jun 2024 12:03:49 -0400 Subject: [PATCH] Adjust the docs for the pip CLI commands (#4445) --- crates/uv/src/cli.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/uv/src/cli.rs b/crates/uv/src/cli.rs index c52dc59b6..ebde81eda 100644 --- a/crates/uv/src/cli.rs +++ b/crates/uv/src/cli.rs @@ -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),