From ce727fbc0758cc0176d1c854b96599e6e8ed40ae Mon Sep 17 00:00:00 2001 From: Helge Mahrt <5497139+helgemahrt@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:27:14 +0100 Subject: [PATCH] workspace: Fix doc comments (#22063) Happened to see that the doc comments here were not correct while implementing something else. Release Notes: - N/A --- crates/workspace/src/workspace_settings.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/workspace/src/workspace_settings.rs b/crates/workspace/src/workspace_settings.rs index 118287cc83..cd1aab7f24 100644 --- a/crates/workspace/src/workspace_settings.rs +++ b/crates/workspace/src/workspace_settings.rs @@ -87,15 +87,15 @@ pub enum RestoreOnStartupBehavior { pub struct WorkspaceSettingsContent { /// Active pane styling settings. pub active_pane_modifiers: Option, - // Direction to split horizontally. - // - // Default: "up" + /// Direction to split horizontally. + /// + /// Default: "up" pub pane_split_direction_horizontal: Option, - // Direction to split vertically. - // - // Default: "left" + /// Direction to split vertically. + /// + /// Default: "left" pub pane_split_direction_vertical: Option, - // Centered layout related settings. + /// Centered layout related settings. pub centered_layout: Option, /// Whether or not to prompt the user to confirm before closing the application. ///