Clarify that uv auth commands take a URL (#15664)

From the previous description I tried `uv auth token pyx`, which didn't
work.

---------

Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
konsti 2025-09-03 16:16:16 +02:00 committed by GitHub
parent 8473ecba11
commit a94f7d0847
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

View file

@ -5538,7 +5538,7 @@ pub struct PythonPinArgs {
#[derive(Args)]
pub struct AuthLogoutArgs {
/// The service to logout of.
/// The domain or URL of the service to logout from.
pub service: Service,
/// The username to logout.
@ -5559,7 +5559,7 @@ pub struct AuthLogoutArgs {
#[derive(Args)]
pub struct AuthLoginArgs {
/// The service to log into.
/// The domain or URL of the service to log into.
pub service: Service,
/// The username to use for the service.
@ -5594,7 +5594,7 @@ pub struct AuthLoginArgs {
#[derive(Args)]
pub struct AuthTokenArgs {
/// The service to lookup.
/// The domain or URL of the service to lookup.
pub service: Service,
/// The username to lookup.
@ -5612,7 +5612,7 @@ pub struct AuthTokenArgs {
#[derive(Args)]
pub struct AuthDirArgs {
/// The service to lookup.
/// The domain or URL of the service to lookup.
pub service: Option<Service>,
}