From 73341e51ac7099b942ca3cf46a20cd13e75bde34 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Fri, 12 Dec 2025 11:59:15 -0500 Subject: [PATCH] Clarify sign-in docs --- crates/extension/src/extension_manifest.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/extension/src/extension_manifest.rs b/crates/extension/src/extension_manifest.rs index 5ae0a6774f91eab023f7581ce1ddfcb26510a9ab..f61686e7e80c25646ae597b025e5eafae821a8b8 100644 --- a/crates/extension/src/extension_manifest.rs +++ b/crates/extension/src/extension_manifest.rs @@ -328,7 +328,7 @@ pub struct LanguageModelManifestEntry { /// Authentication configuration for a language model provider. #[derive(Clone, PartialEq, Eq, Debug, Deserialize, Serialize)] pub struct LanguageModelAuthConfig { - /// Human-readable name for the credential shown in the UI input field (e.g., "API Key", "Access Token"). + /// Human-readable name for the credential shown in the UI input field (e.g. "API Key", "Access Token"). pub credential_label: Option, /// Environment variable name for the API key (if env var auth supported). #[serde(default)] @@ -341,9 +341,9 @@ pub struct LanguageModelAuthConfig { /// OAuth configuration for web-based authentication. #[derive(Clone, PartialEq, Eq, Debug, Deserialize, Serialize)] pub struct OAuthConfig { - /// The text to display on the sign-in button (e.g., "Sign in with GitHub"). + /// The text to display on the sign-in button (e.g. "Sign in with GitHub"). pub sign_in_button_label: Option, - /// The icon to display on the sign-in button (e.g., "github"). + /// The Zed icon path to display on the sign-in button (e.g. "github"). #[serde(default)] pub sign_in_button_icon: Option, }