Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Sep 2, 2024
1 parent e7bbae4 commit 3b4f5d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Studio/CelesteStudio/Studio.cs
Original file line number Diff line number Diff line change
Expand Up @@ -570,11 +570,11 @@ private MenuBar CreateMenu() {
var quitItem = MenuEntry.File_Quit.ToAction(Application.Instance.Quit);
var homeItem = MenuUtils.CreateAction("Open README...", Keys.None, () => ProcessHelper.OpenInDefaultApp("https://github.com/EverestAPI/CelesteTAS-EverestInterop"));
var wikiItem = MenuUtils.CreateAction("Open wiki...", Keys.None, () => ProcessHelper.OpenInDefaultApp("https://github.com/EverestAPI/CelesteTAS-EverestInterop/wiki"));
var whatsNewItem = MenuUtils.CreateAction("Whats new?", Keys.None, () => {
var whatsNewItem = MenuUtils.CreateAction("What's new?", Keys.None, () => {
var asm = Assembly.GetExecutingAssembly();
string version = asm.GetName().Version!.ToString(3);
if (asm.GetManifestResourceStream($"Changelogs/v{version}.md") is { } stream) {
WhatsNewDialog.Show($"Whats new in Studio v{version}?", new StreamReader(stream).ReadToEnd());
WhatsNewDialog.Show($"What's new in Studio v{version}?", new StreamReader(stream).ReadToEnd());
}
});
var aboutItem = MenuUtils.CreateAction("About...", Keys.None, () => {
Expand Down

0 comments on commit 3b4f5d8

Please sign in to comment.