From 473cb5c70caf493277c52d226c847921f8753abd Mon Sep 17 00:00:00 2001 From: sewn Date: Sat, 19 Aug 2023 13:20:23 +0300 Subject: [PATCH] Fix Typos --- Bloxstrap/Bootstrapper.cs | 2 +- Bloxstrap/RobloxDeployment.cs | 2 +- Bloxstrap/UI/NotifyIconWrapper.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs index 024fa9b..8d2e9d1 100644 --- a/Bloxstrap/Bootstrapper.cs +++ b/Bloxstrap/Bootstrapper.cs @@ -783,7 +783,7 @@ namespace Bloxstrap }; } - Dialog?.ShowSuccess($"{App.ProjectName} has succesfully uninstalled", callback); + Dialog?.ShowSuccess($"{App.ProjectName} has successfully uninstalled", callback); } #endregion diff --git a/Bloxstrap/RobloxDeployment.cs b/Bloxstrap/RobloxDeployment.cs index 30267d2..598812c 100644 --- a/Bloxstrap/RobloxDeployment.cs +++ b/Bloxstrap/RobloxDeployment.cs @@ -7,7 +7,7 @@ private static Dictionary ClientVersionCache = new(); - // a list of roblox delpoyment locations that we check for, in case one of them don't work + // a list of roblox deployment locations that we check for, in case one of them don't work private static List BaseUrls = new() { "https://setup.rbxcdn.com", diff --git a/Bloxstrap/UI/NotifyIconWrapper.cs b/Bloxstrap/UI/NotifyIconWrapper.cs index 87c6b83..6eb8e06 100644 --- a/Bloxstrap/UI/NotifyIconWrapper.cs +++ b/Bloxstrap/UI/NotifyIconWrapper.cs @@ -82,7 +82,7 @@ namespace Bloxstrap.UI string serverLocation = await _activityWatcher!.GetServerLocation(); ShowAlert( - $"Connnected to {_activityWatcher.ActivityServerType.ToString().ToLower()} server", + $"Connected to {_activityWatcher.ActivityServerType.ToString().ToLower()} server", $"Located at {serverLocation}\nClick for more information", 10, (_, _) => _menuContainer?.ShowServerInformationWindow() @@ -124,7 +124,7 @@ namespace Bloxstrap.UI if (_alertClickHandler == clickHandler) _alertClickHandler = null; else - App.Logger.WriteLine(LOG_IDENT, "Click handler has been overriden by another alert"); + App.Logger.WriteLine(LOG_IDENT, "Click handler has been overridden by another alert"); }); }