File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments