diff --git a/crates/uv-auth/src/credentials.rs b/crates/uv-auth/src/credentials.rs index 1c5d0d390c2a..a31419641007 100644 --- a/crates/uv-auth/src/credentials.rs +++ b/crates/uv-auth/src/credentials.rs @@ -143,8 +143,8 @@ impl Credentials { /// Extract the [`Credentials`] from the environment, given a named source. /// - /// For example, given a name of `"pytorch"`, search for `UV_HTTP_BASIC_PYTORCH_USERNAME` and - /// `UV_HTTP_BASIC_PYTORCH_PASSWORD`. + /// For example, given a name of `"pytorch"`, search for `UV_INDEX_PYTORCH_USERNAME` and + /// `UV_INDEX_PYTORCH_PASSWORD`. pub fn from_env(name: &str) -> Option { let name = name.to_uppercase(); let username = std::env::var(EnvVars::index_username(&name)).ok();