From 55f5344990a36f3a6b0a8b10d6ca11d511c51f43 Mon Sep 17 00:00:00 2001 From: Rokas <55197768+RokasKil@users.noreply.github.com> Date: Sat, 13 Dec 2025 14:47:37 +0200 Subject: [PATCH 1/2] Fix typos in comments --- SamplePlugin/Plugin.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; From cf3d97acae24d29df0ff6ff71cb2501c4ca938de Mon Sep 17 00:00:00 2001 From: Rokas <55197768+RokasKil@users.noreply.github.com> Date: Sat, 13 Dec 2025 14:48:50 +0200 Subject: [PATCH 2/2] Fix typo in comments --- SamplePlugin/Configuration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);