Skip to content

Commit

Permalink
Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Zingabopp committed Jan 10, 2020
1 parent dfd8132 commit 7e41159
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BSIPA Plugin (Core)/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Plugin : IBeatSaberPlugin
public void Init(IPALogger logger)
{
Logger.log = logger;
Logger.log.Debug("Logger initialised.");
Logger.log.Debug("Logger initialized.");
}

#region BSIPA Config
Expand Down
2 changes: 1 addition & 1 deletion BSIPA Plugin (Disableable)/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Plugin : IBeatSaberPlugin, IDisablablePlugin
public void Init(IPALogger logger, [Config.Prefer("json")] IConfigProvider cfgProvider)
{
Logger.log = logger;
Logger.log.Debug("Logger initialised.");
Logger.log.Debug("Logger initialized.");

configProvider = cfgProvider;

Expand Down
2 changes: 1 addition & 1 deletion BSIPA Plugin (Full)/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class Plugin : IBeatSaberPlugin
public void Init(IPALogger logger, [Config.Prefer("json")] IConfigProvider cfgProvider)
{
Logger.log = logger;
Logger.log.Debug("Logger initialised.");
Logger.log.Debug("Logger initialized.");

configProvider = cfgProvider;

Expand Down

0 comments on commit 7e41159

Please sign in to comment.