diff --git a/docs/Config.md b/docs/Config.md index 02272324bd0..5662a4d7378 100644 --- a/docs/Config.md +++ b/docs/Config.md @@ -69,7 +69,7 @@ gui: expandFocusedSidePanel: false # The weight of the expanded side panel, relative to the other panels. 2 means - # twice as heigh as the other panels. Only relevant if `expandFocusedSidePanel` is true. + # twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true. expandedSidePanelWeight: 2 # Sometimes the main window is split in two (e.g. when the selected file has both staged and unstaged changes). This setting controls how the two sections are split. diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go index 7a958c7a5b5..41d3dfe1072 100644 --- a/pkg/config/user_config.go +++ b/pkg/config/user_config.go @@ -78,7 +78,7 @@ type GuiConfig struct { // If true, increase the height of the focused side window; creating an accordion effect. ExpandFocusedSidePanel bool `yaml:"expandFocusedSidePanel"` // The weight of the expanded side panel, relative to the other panels. 2 means - // twice as heigh as the other panels. Only relevant if `expandFocusedSidePanel` is true. + // twice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true. ExpandedSidePanelWeight int `yaml:"expandedSidePanelWeight"` // Sometimes the main window is split in two (e.g. when the selected file has both staged and unstaged changes). This setting controls how the two sections are split. // Options are: diff --git a/schema/config.json b/schema/config.json index 3d3e31366d9..f5f7bab86ef 100644 --- a/schema/config.json +++ b/schema/config.json @@ -78,7 +78,7 @@ }, "expandedSidePanelWeight": { "type": "integer", - "description": "The weight of the expanded side panel, relative to the other panels. 2 means\ntwice as heigh as the other panels. Only relevant if `expandFocusedSidePanel` is true.", + "description": "The weight of the expanded side panel, relative to the other panels. 2 means\ntwice as tall as the other panels. Only relevant if `expandFocusedSidePanel` is true.", "default": 2 }, "mainPanelSplitMode": {