From 98dec9246e10d7d7606e676c4e44be15fa490de3 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 2 Dec 2025 18:28:30 -0500 Subject: [PATCH] zed: Promote comment to a doc comment (#44031) This PR promotes a line comment above a variant member to a doc comment, so that the docs show up on hover. Release Notes: - N/A --- crates/zed/src/zed/open_listener.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zed/src/zed/open_listener.rs b/crates/zed/src/zed/open_listener.rs index 13b636731798ebe13bb7c9ae8d97bf52356ea0b2..5e855aa5a949254ba32658c26a59c48c7413844e 100644 --- a/crates/zed/src/zed/open_listener.rs +++ b/crates/zed/src/zed/open_listener.rs @@ -54,7 +54,7 @@ pub enum OpenRequestKind { schema_path: String, }, Setting { - // None just opens settings without navigating to a specific path + /// `None` opens settings without navigating to a specific path. setting_path: Option, }, }