mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 05:42:59 +00:00
workspace: Fix doc comments (#22063)
Happened to see that the doc comments here were not correct while implementing something else. Release Notes: - N/A
This commit is contained in:
parent
62b3acee5f
commit
ce727fbc07
1 changed files with 7 additions and 7 deletions
|
@ -87,15 +87,15 @@ pub enum RestoreOnStartupBehavior {
|
|||
pub struct WorkspaceSettingsContent {
|
||||
/// Active pane styling settings.
|
||||
pub active_pane_modifiers: Option<ActivePanelModifiers>,
|
||||
// Direction to split horizontally.
|
||||
//
|
||||
// Default: "up"
|
||||
/// Direction to split horizontally.
|
||||
///
|
||||
/// Default: "up"
|
||||
pub pane_split_direction_horizontal: Option<PaneSplitDirectionHorizontal>,
|
||||
// Direction to split vertically.
|
||||
//
|
||||
// Default: "left"
|
||||
/// Direction to split vertically.
|
||||
///
|
||||
/// Default: "left"
|
||||
pub pane_split_direction_vertical: Option<PaneSplitDirectionVertical>,
|
||||
// Centered layout related settings.
|
||||
/// Centered layout related settings.
|
||||
pub centered_layout: Option<CenteredLayoutSettings>,
|
||||
/// Whether or not to prompt the user to confirm before closing the application.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue