From d2fc23a5a21c0caba6d49099ee1e27996b2d0814 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Sat, 11 Jan 2020 12:22:35 -0600 Subject: [PATCH] Tweaked documentation to better reflect behavior --- IPA.Loader/Loader/PluginManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IPA.Loader/Loader/PluginManager.cs b/IPA.Loader/Loader/PluginManager.cs index 29eac51f..5f891ce3 100644 --- a/IPA.Loader/Loader/PluginManager.cs +++ b/IPA.Loader/Loader/PluginManager.cs @@ -35,7 +35,7 @@ namespace IPA.Loader internal static IEnumerable BSMetas => _bsPlugins; /// - /// Gets info about the plugin with the specified name. + /// Gets info about the enabled plugin with the specified name. /// /// the name of the plugin to get (must be an exact match) /// the plugin metadata for the requested plugin or if it doesn't exist or is disabled @@ -43,7 +43,7 @@ namespace IPA.Loader => BSMetas.Select(p => p.Metadata).FirstOrDefault(p => p.Name == name); /// - /// Gets info about the plugin with the specified ID. + /// Gets info about the enabled plugin with the specified ID. /// /// the ID name of the plugin to get (must be an exact match) /// the plugin metadata for the requested plugin or if it doesn't exist or is disabled