diff --git a/SamplePlugin/Configuration.cs b/SamplePlugin/Configuration.cs index 44798b4..de783a4 100644 --- a/SamplePlugin/Configuration.cs +++ b/SamplePlugin/Configuration.cs @@ -11,7 +11,7 @@ public class Configuration : IPluginConfiguration public bool IsConfigWindowMovable { get; set; } = true; public bool SomePropertyToBeSavedAndWithADefault { get; set; } = true; - // The below exist just to make saving less cumbersome + // The below exists just to make saving less cumbersome public void Save() { Plugin.PluginInterface.SavePluginConfig(this); diff --git a/SamplePlugin/Plugin.cs b/SamplePlugin/Plugin.cs index 4551eda..a9ccbcb 100644 --- a/SamplePlugin/Plugin.cs +++ b/SamplePlugin/Plugin.cs @@ -43,7 +43,7 @@ public Plugin() HelpMessage = "A useful message to display in /xlhelp" }); - // Tell the UI system that we want our windows to be drawn throught he window system + // Tell the UI system that we want our windows to be drawn through the window system PluginInterface.UiBuilder.Draw += WindowSystem.Draw; // This adds a button to the plugin installer entry of this plugin which allows @@ -61,7 +61,7 @@ public Plugin() public void Dispose() { - // Unregister all actions to not leak anythign during disposal of plugin + // Unregister all actions to not leak anything during disposal of plugin PluginInterface.UiBuilder.Draw -= WindowSystem.Draw; PluginInterface.UiBuilder.OpenConfigUi -= ToggleConfigUi; PluginInterface.UiBuilder.OpenMainUi -= ToggleMainUi;