From 9bddee09e7d9cb043362ef335a95276e6f1d613c Mon Sep 17 00:00:00 2001 From: Lewis Henson Date: Sat, 19 Jan 2019 00:00:36 +0000 Subject: [PATCH] Fix misspelling of "project" in descriptions. --- CustomizeVSWindowTitle/GlobalSettingsPageGrid.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CustomizeVSWindowTitle/GlobalSettingsPageGrid.cs b/CustomizeVSWindowTitle/GlobalSettingsPageGrid.cs index 6efa34f..c6c10e5 100644 --- a/CustomizeVSWindowTitle/GlobalSettingsPageGrid.cs +++ b/CustomizeVSWindowTitle/GlobalSettingsPageGrid.cs @@ -19,13 +19,13 @@ public class GlobalSettingsPageGrid : DialogPage { [Category("General")] [DisplayName("Farthest parent folder depth")] - [Description("Default: 1. Distance of the farthest parent folder to be shown. 1 will only show the folder of the opened projet/solution file, before the project/folder name")] + [Description("Default: 1. Distance of the farthest parent folder to be shown. 1 will only show the folder of the opened project/solution file, before the project/folder name")] [DefaultValue(CustomizeVSWindowTitle.DefaultFarthestParentDepth)] public int FarthestParentDepth { get; set; } = 1; [Category("General")] [DisplayName("Closest parent folder depth")] - [Description("Default: 1. Distance of the closest parent folder to be shown. 1 will only show the folder of the opened projet/solution file, before the project/folder name.")] + [Description("Default: 1. Distance of the closest parent folder to be shown. 1 will only show the folder of the opened project/solution file, before the project/folder name.")] [DefaultValue(CustomizeVSWindowTitle.DefaultClosestParentDepth)] public int ClosestParentDepth { get; set; } = 1; @@ -119,4 +119,4 @@ protected override void OnApply(PageApplyEventArgs e) { this.SettingsChanged?.Invoke(this, EventArgs.Empty); } } -} \ No newline at end of file +}