Skip to content

Commit 3ac7177

Browse files
authored
Merge pull request #46 from RokasKil/master
Fix typos in comments
2 parents 150cd3d + c1dd526 commit 3ac7177

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

SamplePlugin/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class Configuration : IPluginConfiguration
1111
public bool IsConfigWindowMovable { get; set; } = true;
1212
public bool SomePropertyToBeSavedAndWithADefault { get; set; } = true;
1313

14-
// The below exist just to make saving less cumbersome
14+
// The below exists just to make saving less cumbersome
1515
public void Save()
1616
{
1717
Plugin.PluginInterface.SavePluginConfig(this);

SamplePlugin/Plugin.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public Plugin()
4343
HelpMessage = "A useful message to display in /xlhelp"
4444
});
4545

46-
// Tell the UI system that we want our windows to be drawn throught he window system
46+
// Tell the UI system that we want our windows to be drawn through the window system
4747
PluginInterface.UiBuilder.Draw += WindowSystem.Draw;
4848

4949
// This adds a button to the plugin installer entry of this plugin which allows
@@ -61,7 +61,7 @@ public Plugin()
6161

6262
public void Dispose()
6363
{
64-
// Unregister all actions to not leak anythign during disposal of plugin
64+
// Unregister all actions to not leak anything during disposal of plugin
6565
PluginInterface.UiBuilder.Draw -= WindowSystem.Draw;
6666
PluginInterface.UiBuilder.OpenConfigUi -= ToggleConfigUi;
6767
PluginInterface.UiBuilder.OpenMainUi -= ToggleMainUi;

0 commit comments

Comments
 (0)