Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/uv-cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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>,
}

Expand Down
8 changes: 4 additions & 4 deletions docs/reference/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ uv auth login [OPTIONS] <SERVICE>

<h3 class="cli-reference">Arguments</h3>

<dl class="cli-reference"><dt id="uv-auth-login--service"><a href="#uv-auth-login--service"<code>SERVICE</code></a></dt><dd><p>The service to log into</p>
<dl class="cli-reference"><dt id="uv-auth-login--service"><a href="#uv-auth-login--service"<code>SERVICE</code></a></dt><dd><p>The domain or URL of the service to log into</p>
</dd></dl>

<h3 class="cli-reference">Options</h3>
Expand Down Expand Up @@ -139,7 +139,7 @@ uv auth logout [OPTIONS] <SERVICE>

<h3 class="cli-reference">Arguments</h3>

<dl class="cli-reference"><dt id="uv-auth-logout--service"><a href="#uv-auth-logout--service"<code>SERVICE</code></a></dt><dd><p>The service to logout of</p>
<dl class="cli-reference"><dt id="uv-auth-logout--service"><a href="#uv-auth-logout--service"<code>SERVICE</code></a></dt><dd><p>The domain or URL of the service to logout from</p>
</dd></dl>

<h3 class="cli-reference">Options</h3>
Expand Down Expand Up @@ -209,7 +209,7 @@ uv auth token [OPTIONS] <SERVICE>

<h3 class="cli-reference">Arguments</h3>

<dl class="cli-reference"><dt id="uv-auth-token--service"><a href="#uv-auth-token--service"<code>SERVICE</code></a></dt><dd><p>The service to lookup</p>
<dl class="cli-reference"><dt id="uv-auth-token--service"><a href="#uv-auth-token--service"<code>SERVICE</code></a></dt><dd><p>The domain or URL of the service to lookup</p>
</dd></dl>

<h3 class="cli-reference">Options</h3>
Expand Down Expand Up @@ -284,7 +284,7 @@ uv auth dir [OPTIONS] [SERVICE]

<h3 class="cli-reference">Arguments</h3>

<dl class="cli-reference"><dt id="uv-auth-dir--service"><a href="#uv-auth-dir--service"<code>SERVICE</code></a></dt><dd><p>The service to lookup</p>
<dl class="cli-reference"><dt id="uv-auth-dir--service"><a href="#uv-auth-dir--service"<code>SERVICE</code></a></dt><dd><p>The domain or URL of the service to lookup</p>
</dd></dl>

<h3 class="cli-reference">Options</h3>
Expand Down
Loading