Fix Typos

This commit is contained in:
sewn 2023-08-19 13:20:23 +03:00
parent f7592f3df8
commit 473cb5c70c
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View File

@ -783,7 +783,7 @@ namespace Bloxstrap
}; };
} }
Dialog?.ShowSuccess($"{App.ProjectName} has succesfully uninstalled", callback); Dialog?.ShowSuccess($"{App.ProjectName} has successfully uninstalled", callback);
} }
#endregion #endregion

View File

@ -7,7 +7,7 @@
private static Dictionary<string, ClientVersion> ClientVersionCache = new(); private static Dictionary<string, ClientVersion> 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<string> BaseUrls = new() private static List<string> BaseUrls = new()
{ {
"https://setup.rbxcdn.com", "https://setup.rbxcdn.com",

View File

@ -82,7 +82,7 @@ namespace Bloxstrap.UI
string serverLocation = await _activityWatcher!.GetServerLocation(); string serverLocation = await _activityWatcher!.GetServerLocation();
ShowAlert( ShowAlert(
$"Connnected to {_activityWatcher.ActivityServerType.ToString().ToLower()} server", $"Connected to {_activityWatcher.ActivityServerType.ToString().ToLower()} server",
$"Located at {serverLocation}\nClick for more information", $"Located at {serverLocation}\nClick for more information",
10, 10,
(_, _) => _menuContainer?.ShowServerInformationWindow() (_, _) => _menuContainer?.ShowServerInformationWindow()
@ -124,7 +124,7 @@ namespace Bloxstrap.UI
if (_alertClickHandler == clickHandler) if (_alertClickHandler == clickHandler)
_alertClickHandler = null; _alertClickHandler = null;
else 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");
}); });
} }